default concurrency from 1 to 5 (#952)

This commit is contained in:
JinmingHu 2020-11-12 14:04:38 +08:00 committed by GitHub
parent 83e4efbf60
commit b5005d910c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -756,7 +756,7 @@ namespace Azure { namespace Storage { namespace Blobs {
/**
* @brief The maximum number of threads that may be used in a parallel transfer.
*/
int Concurrency = 1;
int Concurrency = 5;
};
/**
@ -991,7 +991,7 @@ namespace Azure { namespace Storage { namespace Blobs {
/**
* @brief The maximum number of threads that may be used in a parallel transfer.
*/
int Concurrency = 1;
int Concurrency = 5;
};
/**

View File

@ -744,7 +744,7 @@ namespace Azure { namespace Storage { namespace Files { namespace DataLake {
/**
* @brief The maximum number of threads that may be used in a parallel transfer.
*/
int Concurrency = 1;
int Concurrency = 5;
};
using ScheduleFileExpiryOriginType = Blobs::Models::ScheduleBlobExpiryOriginType;
@ -809,7 +809,7 @@ namespace Azure { namespace Storage { namespace Files { namespace DataLake {
/**
* @brief The maximum number of threads that may be used in a parallel transfer.
*/
int Concurrency = 1;
int Concurrency = 5;
};
using AcquirePathLeaseOptions = Blobs::AcquireBlobLeaseOptions;

View File

@ -840,7 +840,7 @@ namespace Azure { namespace Storage { namespace Files { namespace Shares {
/**
* @brief The maximum number of threads that may be used in a parallel transfer.
*/
int Concurrency = 1;
int Concurrency = 5;
};
/**
@ -928,6 +928,6 @@ namespace Azure { namespace Storage { namespace Files { namespace Shares {
/**
* @brief The maximum number of threads that may be used in a parallel transfer.
*/
int Concurrency = 1;
int Concurrency = 5;
};
}}}} // namespace Azure::Storage::Files::Shares