From 4b6b2a40fae9e1c2f2331044bad76cdd75a94772 Mon Sep 17 00:00:00 2001 From: JinmingHu Date: Thu, 3 Jun 2021 06:48:35 +0800 Subject: [PATCH] use int32_t for retry count (#2377) --- .../inc/azure/storage/common/reliable_stream.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/storage/azure-storage-common/inc/azure/storage/common/reliable_stream.hpp b/sdk/storage/azure-storage-common/inc/azure/storage/common/reliable_stream.hpp index 9fe2a23f1..3710d7cd5 100644 --- a/sdk/storage/azure-storage-common/inc/azure/storage/common/reliable_stream.hpp +++ b/sdk/storage/azure-storage-common/inc/azure/storage/common/reliable_stream.hpp @@ -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; }; /**