Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
GBBBAS committed Dec 19, 2024
1 parent 33ba996 commit 81b2c0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ def name(self) -> str:
# job has finished.
def _get_log_path(self, params: PipesParams) -> Optional[str]:
if self.log_path is None:
cluster_driver_log_root = params["extras"].get("cluster_driver_log_root")
cluster_driver_log_root = params["extras"].get("cluster_driver_log_root") if "extras" in params else None
if cluster_driver_log_root is None:
return None
try:
Expand Down

0 comments on commit 81b2c0b

Please sign in to comment.