Skip to content

Commit

Permalink
[Runtimes] Fix exceptions catching in runtime deployment check (#1243)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hedingber committed Aug 24, 2021
1 parent 6c12f41 commit 6fa9162
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlrun/runtimes/kubejob.py
Expand Up @@ -47,7 +47,7 @@ def is_deployed(self):
db = self._get_db()
try:
db.get_builder_status(self, logs=False)
except RunDBError:
except Exception:
pass

if self.spec.image:
Expand Down

0 comments on commit 6fa9162

Please sign in to comment.