mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 08:13:08 +00:00
Merge pull request #6767 from mway/devel
don't parse empty stream chunks
This commit is contained in:
@@ -137,6 +137,9 @@ class DockerImageManager:
|
||||
self.changed = True
|
||||
|
||||
for chunk in stream:
|
||||
if not chunk:
|
||||
continue
|
||||
|
||||
chunk_json = json.loads(chunk)
|
||||
|
||||
if 'error' in chunk_json:
|
||||
|
||||
Reference in New Issue
Block a user