Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix debug log line for job metrics #6700

Merged
merged 1 commit into from
Jun 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -550,8 +550,7 @@ def _extract_job_timestamp(self, name):
if ts.isdigit():
return int(ts)
else:
msg = 'Cannot extract ts from job name {}'
self.log.debug(msg, name)
self.log.debug("Cannot extract ts from job name %s", name)
return None

# Labels attached: namespace, pod
Expand Down