Skip to content

Commit

Permalink
[Projects] Fix run timeout override (#2108)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tankilevitch committed Jul 6, 2022
1 parent c2622c5 commit a93abbf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mlrun/projects/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -1950,10 +1950,13 @@ def save_workflow(self, name, target, artifact_path=None, ttl=None):
def get_run_status(
self,
run,
timeout=60 * 60,
timeout=None,
expected_statuses=None,
notifiers: RunNotifications = None,
):
if timeout is None:
timeout = 60 * 60

state = ""
raise_error = None
try:
Expand Down

0 comments on commit a93abbf

Please sign in to comment.