jflefebvre06

Results 31 comments of jflefebvre06

Hello @gmessner Do you know the lombock project ? It can help you

No, Status is not accessible from `BackoffStrategy` ```java public interface BackoffStrategy { Duration getDurationToWait(int numberOfTriesFailed, Duration delayBetweenAttempts); default void validateConfig(RetryConfig config) {} } ```

The use case is to manage http too many requests ```java Duration getDurationToWait(int numberOfTriesFailed, Duration delayBetweenAttempts) { if(exception.getHttpStatus()==429) return Duration.ofMinutes(1); else return Duration.ofSeconds(2); } ```

I think you can use `fabric8.build.pullSecret` property

Due to new docker rate limit, I tied to set `openshiftPullSecret` to authenticate to dockerhub but no effect on the generated build config ```xml io.fabric8 fabric8-maven-plugin true docker myPullSecret all...

Hello @spycle I have integrated into my HA, now I have no error into log but "switch.microbot_push" have no effect. Only works few seconds if I press de keymit button...

I have this warning Cette erreur provient d'une intégration personnalisée Logger: py.warnings Source: custom_components/keymitt_ble/switch.py:50 Integration: Keymitt MicroBot Push First occurred: 08:41:27 (6 occurrences) Last logged: 08:52:25 ``` /usr/local/lib/python3.12/site-packages/microbot/__init__.py:241: RuntimeWarning: coroutine...

No I have not removed or re added the integration

1. As your code have been merged to 2024.2.0b9, I have removed code from custom_component 2. I have removed integration, restart ha and wait. 3. Button not auto discovered after...

The only way I found to make it works is to add to esphome this snipped of code to maintain the connection ``` ble_client: - mac_address: ${microbot_mac_address} id: microbot_client on_connect:...