Maximilian Lenhardt
Maximilian Lenhardt
## Expected behavior Subscribing should be possible before connecting the client - as described in https://github.com/hivemq/hivemq-mqtt-client/issues/521. ## Actual behavior Subscribing before connecting blocks forever. ## To Reproduce ### Steps 1....
## PR Checklist Please check if your PR fulfills the following requirements: - [x] The commit message follows our guidelines: CONTRIBUTING.md#commit - [x] Tests for the changes have been added...
I'm submitting a... - [ ] Regression (a behavior that used to work and stopped working in a new release) - [ ] Bug report - [ ] Performance issue...
### Is this a regression? No ### Description I got lost during debugging this and I don't know how it happens, but there is some weird behavior if I have...
The other day, I encountered what I regard as an issue in the following Code snippet: https://github.com/mapbox/mapbox-java/blob/4ae8b78746fb37b2673364bdd4c8702057f3e7f3/services-turf/src/main/java/com/mapbox/turf/TurfMeasurement.java#L227 The scenario is the following: We have a list of GPS points of...
This test case fails: `expect(isEqual(new Map(), new Map([['1', '123']]))).toBeFalsy();` where as `expect(isEqual({}, {'1': '123'})).toBeFalsy();` succeeds. The issue is that `Reflect.ownKeys()` returns an empty array. and so the keys are never...
We encountered following problem in our project: When we pass a list to the above mentioned method and if the last point in the list is the closest point, the...