Skip to content

Commit d690aeb

Browse files
authored
[Storage] Unbound connection limit in NET FX test suite (Azure#16876)
Bump connection limit to int.Max . We already run tests with int.Max on .netcore . Revisiting this setting when when we change parallelization/volume of tests is annoying.
1 parent ff3921b commit d690aeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/storage/Azure.Storage.Common/tests/Shared/StorageTestBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ static StorageTestBase()
3030
// https://github.com/Azure/azure-sdk-for-net/issues/9087
3131
// .NET framework defaults to 2, which causes issues for the parallel upload/download tests.
3232
#if !NETCOREAPP
33-
ServicePointManager.DefaultConnectionLimit = 200;
33+
ServicePointManager.DefaultConnectionLimit = int.MaxValue;
3434
#endif
3535
}
3636

0 commit comments

Comments
 (0)