Skip to content

Commit

Permalink
Fix spacing in KubernetesProvider debug log and use deferred formatti…
Browse files Browse the repository at this point in the history
…ng (#3508)
  • Loading branch information
benclifford authored Jul 2, 2024
1 parent f62110d commit 68a9f5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsl/providers/kubernetes/kube.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def submit(self, cmd_string, tasks_per_node, job_name="parsl"):
formatted_cmd = template_string.format(command=cmd_string,
worker_init=self.worker_init)

logger.debug("Pod name :{}".format(pod_name))
logger.debug("Pod name: %s", pod_name)
self._create_pod(image=self.image,
pod_name=pod_name,
job_name=job_name,
Expand Down

0 comments on commit 68a9f5c

Please sign in to comment.