Skip to content

Commit

Permalink
Do not mount/umount docker datasets on docker service start/stop
Browse files Browse the repository at this point in the history
  • Loading branch information
sonicaj committed Sep 15, 2024
1 parent 25e4780 commit 5e957e7
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ class DockerService(SimpleService):
async def before_start(self):
await self.middleware.call('docker.state.set_status', Status.INITIALIZING.value)
await self.middleware.call('docker.state.before_start_check')
await self.middleware.call('docker.fs_manage.mount')
await self.middleware.call('catalog.sync')
for key, value in (
('vm.panic_on_oom', 0),
Expand Down Expand Up @@ -54,6 +53,5 @@ async def before_stop(self):
await self.middleware.call('docker.state.set_status', Status.STOPPING.value)

async def after_stop(self):
await self.middleware.call('docker.fs_manage.umount')
await self.middleware.call('docker.state.set_status', Status.STOPPED.value)
await self.middleware.call('catalog.sync')

0 comments on commit 5e957e7

Please sign in to comment.