Skip to content

Commit 8b1e1d2

Browse files
committed
* Maybe actually fix the bug
1 parent bd1a4e1 commit 8b1e1d2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

projects/Test/Integration/ToxiproxyManager.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ public ToxiproxyManager(string testDisplayName, bool isRunningInCI, bool isWindo
3434

3535
_proxyPort = Interlocked.Increment(ref s_proxyPort);
3636

37-
_proxyConnection = new Connection(resetAllToxicsAndProxiesOnClose: true);
37+
/*
38+
* Note:
39+
* Do NOT set resetAllToxicsAndProxiesOnClose to true, because it will
40+
* clear proxies being used by parallel TFM test runs
41+
*/
42+
_proxyConnection = new Connection(resetAllToxicsAndProxiesOnClose: false);
3843
_proxyClient = _proxyConnection.Client();
3944

4045
// to start, assume everything is on localhost

0 commit comments

Comments
 (0)