Skip to content

Commit

Permalink
Fixed shutdown order
Browse files Browse the repository at this point in the history
  • Loading branch information
ausrasul committed Aug 30, 2024
1 parent b4d4e7a commit bf70813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simpledeploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,9 @@ def start(self):
self._services_start()
self.container.start(podname=self.name)
def stop(self):
self._remove_pod()
self.container.stop()
self._services_stop()
self._remove_pod()
def _services_start(self):
for service in self.services:
service.start(podname=self.name)
Expand Down

0 comments on commit bf70813

Please sign in to comment.