-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
[EventHubs] add fixed backoff retry mode #21884
[EventHubs] add fixed backoff retry mode #21884
Conversation
API changes have been detected in |
API changes have been detected in API changes - api_version: str,
+ api_version: str = ...,
- secondary_hostname: str,
+ secondary_hostname: str = ...,
- api_version: str,
+ api_version: str = ...,
- secondary_hostname: str,
+ secondary_hostname: str = ..., |
API changes have been detected in API changes - api_version: str,
- secondary_hostname: str,
+ api_version: str = ...,
+ secondary_hostname: str = ...,
- api_version: str,
- secondary_hostname: str,
+ api_version: str = ...,
+ secondary_hostname: str = ..., |
/azp run python - eventhub - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
API changes have been detected in |
sdk/eventhub/azure-eventhub/azure/eventhub/aio/_consumer_client_async.py
Outdated
Show resolved
Hide resolved
sdk/eventhub/azure-eventhub/azure/eventhub/aio/_consumer_client_async.py
Outdated
Show resolved
Hide resolved
sdk/eventhub/azure-eventhub/azure/eventhub/aio/_producer_client_async.py
Outdated
Show resolved
Hide resolved
sdk/eventhub/azure-eventhub/azure/eventhub/aio/_producer_client_async.py
Outdated
Show resolved
Hide resolved
@@ -33,5 +34,6 @@ | |||
"LoadBalancingStrategy", | |||
"PartitionContext", | |||
"parse_connection_string", | |||
"EventHubConnectionStringProperties" | |||
"EventHubConnectionStringProperties", | |||
"RetryMode" |
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.
There're API changes, remember to get @annatisch to take a look at the API view before CC day :)
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.
it looks great, thanks!
left some minor comments
/azp run python - eventhub - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run python - eventhub - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
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.
I'm approving this PR, but I would recommend letting @annatisch review the API changes first before merging it to avoid rolling back.
* sync retry mode impl * async impl * add test * pylint * lint * adams comments * lint * adams comments * fix test
fixes: #8670