You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CbsClient.negotiateClaim method in core-amqp is async, but doesn't currently accept an abortSignal. This means that if a connection is closed while the claim is being negotiated, the process won't exit until the operation timeout (default 60 seconds) has been reached.
This behavior can be reproduced using the sample provided in #9615.
In the sample, we close the EventHubConsumerClient, but then the process waits ~60 seconds before exiting while it waits for the timeout from the negotiateClaim call to be reached.
The text was updated successfully, but these errors were encountered:
The
CbsClient.negotiateClaim
method in core-amqp is async, but doesn't currently accept anabortSignal
. This means that if a connection is closed while the claim is being negotiated, the process won't exit until the operation timeout (default 60 seconds) has been reached.This behavior can be reproduced using the sample provided in #9615.
In the sample, we close the EventHubConsumerClient, but then the process waits ~60 seconds before exiting while it waits for the timeout from the negotiateClaim call to be reached.
The text was updated successfully, but these errors were encountered: