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 8a963b5 commit f6273a5Copy full SHA for f6273a5
src/core_modules/cron.py
@@ -31,7 +31,7 @@ def _schedule_match(self, timestamp, schedule):
31
def _schedule_match_part(self, timestamp_part, schedule_part):
32
if "," in schedule_part:
33
for schedule_part in schedule_part.split(","):
34
- if self._match([timestamp_part], [schedule_part]):
+ if self._schedule_match_part([timestamp_part], [schedule_part]):
35
return True
36
37
elif schedule_part.startswith("*/"):
0 commit comments