mirror of
https://github.com/docker/compose.git
synced 2025-07-08 22:34:26 +02:00
Merge pull request #1374 from aanand/close-before-attaching
Close connection after building or pulling
This commit is contained in:
commit
878d90febf
@ -476,6 +476,11 @@ class Service(object):
|
|||||||
except StreamOutputError as e:
|
except StreamOutputError as e:
|
||||||
raise BuildError(self, unicode(e))
|
raise BuildError(self, unicode(e))
|
||||||
|
|
||||||
|
# Ensure the HTTP connection is not reused for another
|
||||||
|
# streaming command, as the Docker daemon can sometimes
|
||||||
|
# complain about it
|
||||||
|
self.client.close()
|
||||||
|
|
||||||
image_id = None
|
image_id = None
|
||||||
|
|
||||||
for event in all_events:
|
for event in all_events:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user