Skip to content

Commit 4e35c54

Browse files
committed
add more log
1 parent f177b3a commit 4e35c54

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/scheduler/kubernetes/scheduler.py

+1
Original file line numberDiff line numberDiff line change
@@ -1001,6 +1001,7 @@ def handle_cron_jobs(self):
10011001
WHERE id = %s """, [c['id']])
10021002
result = cursor.fetchone()
10031003
if result:
1004+
self.logger.info(f"### result is {result}")
10041005
last_trigger = result[0]
10051006
i = croniter('%s %s %s %s %s' % (c['minute'], c['hour'], c['day_month'], c['month'], c['day_week']), last_trigger)
10061007
next_trigger = i.get_next(datetime)

0 commit comments

Comments
 (0)