Skip to content

Commit 574e676

Browse files
ceorourkearmenzg
authored andcommitted
ref(daily summary): Disable notification (#70295)
I don't currently have any time to dedicate to bug fixing and it's been sending multiple times, so this is going to be disabled for now. We'll likely have to keep track of which users per org received the notification and check that before sending, and then clear it out every hour to avoid duplicate sending.
1 parent cc7a7d1 commit 574e676

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/sentry/conf/server.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1110,12 +1110,12 @@ def SOCIAL_AUTH_DEFAULT_USERNAME() -> str:
11101110
"schedule": crontab(minute="0", hour="12", day_of_week="saturday"),
11111111
"options": {"expires": 60 * 60 * 3},
11121112
},
1113-
"schedule-daily-organization-reports": {
1114-
"task": "sentry.tasks.summaries.daily_summary.schedule_organizations",
1115-
# Run every 1 hour on business days
1116-
"schedule": crontab(minute=0, hour="*/1", day_of_week="mon-fri"),
1117-
"options": {"expires": 60 * 60 * 3},
1118-
},
1113+
# "schedule-daily-organization-reports": {
1114+
# "task": "sentry.tasks.summaries.daily_summary.schedule_organizations",
1115+
# # Run every 1 hour on business days
1116+
# "schedule": crontab(minute=0, hour="*/1", day_of_week="mon-fri"),
1117+
# "options": {"expires": 60 * 60 * 3},
1118+
# },
11191119
"schedule-hybrid-cloud-foreign-key-jobs": {
11201120
"task": "sentry.tasks.deletion.hybrid_cloud.schedule_hybrid_cloud_foreign_key_jobs",
11211121
# Run every 15 minutes

0 commit comments

Comments
 (0)