From 5049208a2b43f258e03aee3b3cf552d928b188f9 Mon Sep 17 00:00:00 2001 From: Luke Butters Date: Wed, 9 Aug 2023 10:11:16 +1000 Subject: [PATCH] Redue iters to try to speed things up --- source/Halibut.Tests/Util/StandardIterationCount.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/Halibut.Tests/Util/StandardIterationCount.cs b/source/Halibut.Tests/Util/StandardIterationCount.cs index e838fd6e5..24da5075d 100644 --- a/source/Halibut.Tests/Util/StandardIterationCount.cs +++ b/source/Halibut.Tests/Util/StandardIterationCount.cs @@ -18,13 +18,13 @@ public static int ForServiceType(ServiceConnectionType connectionType, ClientAnd { case ServiceConnectionType.Polling: // Polling is slow, we don't know why - return 50; + return 42; case ServiceConnectionType.PollingOverWebSocket: // Assume polling over websockets is also slow - return 50; + return 42; case ServiceConnectionType.Listening: // Listening is fast - return 1000; + return 333; default: throw new ArgumentOutOfRangeException(nameof(connectionType), connectionType, null); }