We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a generator:
def push(client, image_tag): image, tag = image_tag extra = {'event': 'push', 'image': image} for evt in client.push(image, tag, stream=True): d = compat.json_loads(evt) d.update(extra) yield d
And if I get a socket error while iterating from the socket, I'd like to retry a few times.
The text was updated successfully, but these errors were encountered:
This seems to be related to #23
Sorry, something went wrong.
👍
No branches or pull requests
I have a generator:
And if I get a socket error while iterating from the socket, I'd like to retry a few times.
The text was updated successfully, but these errors were encountered: