Skip to content

Commit

Permalink
fix: pause -> paused typo
Browse files Browse the repository at this point in the history
  • Loading branch information
newgene committed May 21, 2023
1 parent 42c9580 commit b009e92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biothings/hub/dataload/dumper.py
Original file line number Diff line number Diff line change
Expand Up @@ -2051,7 +2051,7 @@ def prepare_remote_container(self):
self.logger.exception(err)
raise DockerContainerException("Docker APIError when trying to get the container")

if self.container.status == "pause":
if self.container.status == "paused":
self.logger.info('Unpause the container "%s" ...', self.CONTAINER_NAME)
self.container.unpause()
self.logger.info('The container "%s" is unpaused!', self.CONTAINER_NAME)
Expand Down

0 comments on commit b009e92

Please sign in to comment.