From: Magnus Hagander Date: Mon, 22 Jul 2024 12:42:53 +0000 (+0200) Subject: Fix typo that caused message token refresh to never run in background X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=d0026b50f4fec37400c584f5dc20ccbdd7132e5c;p=pgeu-system.git Fix typo that caused message token refresh to never run in background --- diff --git a/postgresqleu/util/management/commands/check_messaging_integrations.py b/postgresqleu/util/management/commands/check_messaging_integrations.py index d63f4259..6afbd540 100644 --- a/postgresqleu/util/management/commands/check_messaging_integrations.py +++ b/postgresqleu/util/management/commands/check_messaging_integrations.py @@ -22,7 +22,7 @@ class Command(BaseCommand): help = 'Validate messaging integrations and refresh tokens' class ScheduledJob: - scheduled_time = [datetime.time(4, 19)] + scheduled_times = [datetime.time(4, 19)] default_notify_on_success = True @classmethod