Make project start and stop error handling more resilient, and improve message text.

pull/18777/head
Chris Houseknecht 8 years ago committed by Matt Clay
parent ecb05b03d4
commit b01af0d747

@ -655,7 +655,7 @@ class ContainerManager(DockerBaseClass):
detached=detached, detached=detached,
remove_orphans=self.remove_orphans) remove_orphans=self.remove_orphans)
except Exception as exc: except Exception as exc:
self.client.fail("Error bring %s up - %s" % (self.project.name, str(exc))) self.client.fail("Error starting project - %s" % str(exc))
if self.stopped: if self.stopped:
result.update(self.cmd_stop(service_names)) result.update(self.cmd_stop(service_names))
@ -804,7 +804,7 @@ class ContainerManager(DockerBaseClass):
try: try:
self.project.down(image_type, self.remove_volumes, self.remove_orphans) self.project.down(image_type, self.remove_volumes, self.remove_orphans)
except Exception as exc: except Exception as exc:
self.client.fail("Error bringing %s down - %s" % (self.project.name, str(exc))) self.client.fail("Error stopping project - %s" % str(exc))
return result return result

Loading…
Cancel
Save