-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
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
fix: fix broken import for google.api_core.retry_async.AsyncRetry #587
Conversation
…nary_async.AsyncRetry
"if_exception_type", | ||
"if_transient_error", | ||
"retry_target", | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could also be potentially fixed with a file at google/api_core/retry_async.py
, right?
Either way works for me, but it does seem like it could be confusing to have a retry_async
folder, even though the actual async implementation is in /retry
.
Using a retry_async.py
file mirrors the old implementation, which feels slightly cleaner to me
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in 4f01471
Nice! Super speedy one it seems :D. Thanks for handling it that quickly :D |
Fixes #586 🦕