Fix start all create error if a docker container is already running

Fix #839
pull/862/head
Julien Duponchelle 8 years ago
parent 3259ec1220
commit 8f6d25cc2b
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -344,6 +344,8 @@ class DockerVM(BaseNode):
state = yield from self._get_container_state()
if state == "paused":
yield from self.unpause()
elif state == "running":
return
else:
yield from self._clean_servers()

Loading…
Cancel
Save