use int32_t for retry count (#2377)

This commit is contained in:
JinmingHu 2021-06-03 06:48:35 +08:00 committed by GitHub
parent 9fd5806c14
commit 4b6b2a40fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ namespace Azure { namespace Storage { namespace _internal {
struct ReliableStreamOptions final
{
// configures the maximun retries to be done.
int64_t MaxRetryRequests;
int32_t MaxRetryRequests;
};
/**