seidnerj

Results 89 comments of seidnerj

In some scenarios the server encounters an exception during its startup phase (e.g. trying to fetch some configuration data or similar, without which the various routes cannot function etc.). In...

From real life experience, it seems not - the server proceeds to load and starts waiting for requests. I even tested this with a simple "raise Exception()" scenario and it...

This is fixed in https://github.com/nitaybz/homebridge-sensibo-ac/pull/136 (added retries for 429 status code)

Would love to see this feature as well.

I ended up simply adding the below in unified.js, immediately after `const mode = key.toUpperCase()`: ``` if (mode === 'AUTO') { continue; } ``` I then removed the AC accessories...

@krypton-byte is this in v0.16.0 by any chance?

For the time being I manually patched this by removing the excess "/" in route="/{*route}" in http_app_func's decorator under the AsgiFunctionApp class. It's a terrible solution. I hope this is...