We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54d9365 commit 90a43faCopy full SHA for 90a43fa
main.py
@@ -120,8 +120,8 @@ async def health_endpoint(_request):
120
success = True
121
122
current_time = time()
123
- # Ping Sentry at least every minute. Using a 30s buffer to be safe.
124
- if IS_SENTRY_ENABLED and current_time - state["sentry_cron_last_ping_time"] > 50:
+ # Ping Sentry at least every minute.
+ if IS_SENTRY_ENABLED and current_time - state["sentry_cron_last_ping_time"] >= 60:
125
state["sentry_cron_last_ping_time"] = current_time
126
capture_checkin(
127
monitor_slug='discord-provisioner-bot',
0 commit comments