feat: clarify slack alerting message

Specify the time of the next run, not the interval
This commit is contained in:
Spencer Krum
2024-06-05 11:57:42 -05:00
parent f790d41e7f
commit 46c78cf33b
+1 -1
View File
@@ -537,7 +537,7 @@ class SlackAlerting(CustomLogger):
cache_list=combined_metrics_cache_keys
)
message += f"\n\nNext Run is in: `{time.time() + self.alerting_args.daily_report_frequency}`s"
message += f"\n\nNext Run is at: `{time.time() + self.alerting_args.daily_report_frequency}`s"
# send alert
await self.send_alert(message=message, level="Low", alert_type="daily_reports")