Skip to content

Commit

Permalink
Merge pull request #14 from sdatko/master
Browse files Browse the repository at this point in the history
Catch all exceptions from nodes
  • Loading branch information
sdatko authored Mar 21, 2022
2 parents b73c614 + ff5b829 commit bc72a84
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions devnest/lib/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -675,6 +675,10 @@ def _get_reservation_info(self):
' invalid json format: %s' % (self.get_name(),
offline_cause_reason))

except Exception:
LOG.error('Caught exception for node %s' % self.get_name())
raise

return reservation_info

def _get_total_physical_mem(self):
Expand Down

0 comments on commit bc72a84

Please sign in to comment.