Reno Reckling

Results 31 comments of Reno Reckling

As a workaround, in the deconz interface, the plug exposes a writable attribute called `Reporting Interval`. The default value is 300, but setting it to "10" seems to at least...

Thank you. I upgraded deconz to 2.18.2 and the issue went away! Did not have to firmware upgrade the device. With the latest deconz version, I can set the reporting...

Any updates on this? I can't search for any mails with attachments because of this.

I actually have multiple such situations. For `merge()`: I'm using CRDTs in a multi-party sync client that gets a full Orswot from one client, merges it into the local server...

These are good suggestions. Returning `bool` would already be very helpful. What would be even better is returning a `Vec` of the operations it performed to bring local and other...

@kyri-petrou > EDIT / PS: If this is indeed the solution to the issue, I think we should be fixing `++` instead and adding tests to ensure that it's left-associative...

Adding the test case is complicated because it depends on TestServer, which is afaik not usable in zio-http because it would lead to circular dependencies. For my local testing I...

@987Nabil Do you mean that the request handlers should be constructed from the routes iterating back to front over them or do you mean that the request handler tree building...

@987Nabil @kyri-petrou I updated the PR to change the handler merging logic in cases of multiple handlers for the same path. The old code iterated over the handler from left...

Since the new code is more general, i also got rid of the special casing between one handler and more than one handler.