Skip to content

Commit

Permalink
RdFrameworkTestBase: increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
ForNeVeR committed Sep 27, 2024
1 parent 705d99f commit cbf1373
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rd-net/Test.RdFramework/RdFrameworkTestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public override void TearDown()
int barrier = 0;
ServerProtocol.Scheduler.InvokeOrQueue(() => Interlocked.Increment(ref barrier));
ClientProtocol.Scheduler.InvokeOrQueue(() => Interlocked.Increment(ref barrier));
if (!SpinWait.SpinUntil(() => barrier == 2, 100))
if (!SpinWait.SpinUntil(() => barrier == 2, 500))
Log.Root.Error("Either Server or Client scheduler is not empty in 100ms!");
WireTapping?.Dispose();
base.TearDown();
Expand Down

0 comments on commit cbf1373

Please sign in to comment.