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 1ff88e2 commit 28fb03aCopy full SHA for 28fb03a
monitor.py
@@ -129,10 +129,10 @@ def get_jobs(prow_link):
129
if match:
130
all_jobs=match.group(1)
131
all_jobs_parsed=json.loads(all_jobs)
132
- current_date=get_current_date()
+ current_date=get_current_date().date()
133
jobs_run_today = []
134
for ele in all_jobs_parsed:
135
- job_time=parse_job_date(ele["Started"])
+ job_time=parse_job_date(ele["Started"]).date()
136
if job_time == current_date and ele["Result"] != "PENDING":
137
job_log_path = ele["SpyglassLink"]
138
jobs_run_today.append(job_log_path)
0 commit comments