Skip to content

Commit

Permalink
Merge pull request #1188 from Unity-Technologies/change-default-conne…
Browse files Browse the repository at this point in the history
…ction-limit

Use the non-server default connection limit for unityaot (case 1156607)
  • Loading branch information
Joshua Peterson authored May 29, 2019
2 parents cc64ebd + f41e565 commit 48242a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mcs/class/System/System.Net/ServicePointManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public override bool Equals (object obj) {
// Fields

public const int DefaultNonPersistentConnectionLimit = 4;
#if MOBILE
#if MOBILE && !UNITY_AOT
public const int DefaultPersistentConnectionLimit = 10;
#else
public const int DefaultPersistentConnectionLimit = 2;
Expand Down

0 comments on commit 48242a6

Please sign in to comment.