Fix account going offline every few seconds (#14300)

Signed-off-by: Kai Kreuzer <kai@openhab.org>
This commit is contained in:
Kai Kreuzer 2023-01-31 19:35:22 +01:00 committed by Jacob Laursen
parent f342b3dc6f
commit ad57a0bf56

View File

@ -188,8 +188,8 @@ public class TeslaAccountHandler extends BaseBridgeHandler {
} else {
logger.warn("Reached the maximum number of errors ({}) for the current interval ({} seconds)",
API_MAXIMUM_ERRORS_IN_INTERVAL, API_ERROR_INTERVAL_SECONDS);
apiIntervalErrors = 0;
}
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR);
} else if ((System.currentTimeMillis() - apiIntervalTimestamp) > 1000 * API_ERROR_INTERVAL_SECONDS) {
logger.trace("Resetting the error counter. ({} errors in the last interval)", apiIntervalErrors);