Skip to content

Commit

Permalink
Make sure status is updated if docker datasets fail to mount
Browse files Browse the repository at this point in the history
  • Loading branch information
sonicaj committed Oct 9, 2024
1 parent bf1bda2 commit 60a38b9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/middlewared/middlewared/plugins/failover_/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -953,6 +953,7 @@ def start_apps(self):
try:
self.run_call('docker.fs_manage.mount')
except Exception:
self.middleware.call_sync('docker.state.set_status', Status.FAILED.value, 'Failed to mount docker datasets')
logger.error('Failed to mount docker datasets', exc_info=True)
return
else:
Expand Down

0 comments on commit 60a38b9

Please sign in to comment.