mirror of https://github.com/docker/docker-py.git
Merge branch 'fix-premature-eof' of https://github.com/a-ba/docker-py into a-ba-fix-premature-eof
Conflicts: docker/client.py
This commit is contained in:
commit
96a5b29a4a
|
@ -215,7 +215,7 @@ class ClientBase(requests.Session):
|
|||
break
|
||||
_, length = struct.unpack('>BxxxL', header)
|
||||
if not length:
|
||||
break
|
||||
continue
|
||||
data = response.raw.read(length)
|
||||
if not data:
|
||||
break
|
||||
|
|
Loading…
Reference in New Issue