linkedin / ambry

Distributed object store
https://github.com/linkedin/ambry/wiki
Apache License 2.0
1.74k stars 275 forks source link

[vcr-2.0] Remove unnecessary sleep in azure-client #2830

Closed snalli closed 1 month ago

snalli commented 1 month ago

The Azure SDK interprets the tryTimeoutInSeconds as sleep duration after each request to Azure. However, we are using a sync-client which blocks for the same duration waiting on a response. So we don't need an additional sleep in the client due to tryTimeoutInSeconds.

The above is azure-blob-client. Also, fixes azure-table-client similarly.