We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 03e43be + 5a8a424 commit 747d23bCopy full SHA for 747d23b
1 file changed
docker/models/images.py
@@ -407,8 +407,8 @@ def load(self, data):
407
if match:
408
image_id = match.group(2)
409
images.append(image_id)
410
- if 'error' in chunk:
411
- raise ImageLoadError(chunk['error'])
+ if 'errorDetail' in chunk:
+ raise ImageLoadError(chunk['errorDetail']['message'])
412
413
return [self.get(i) for i in images]
414
0 commit comments