We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b12980 commit 7dcc882Copy full SHA for 7dcc882
observer/observer.py
@@ -746,7 +746,8 @@ async def observer_loop(config: Configuration) -> None:
746
LOGGER.warning(f"Error calling API: {e}")
747
last_ping = time.time()
748
749
- if int(time.time() - cron_time) < 60 * 60:
+ if time.time() - cron_time < 60 * 60:
750
+ cron_time = time.time()
751
check_functions = [
752
entity.check_addresses(config, w),
753
fum.check_addresses(config, w),
0 commit comments