From 5c9caed3b7116417f2b31183cad599796a1075bc Mon Sep 17 00:00:00 2001 From: Luke Bakken Date: Mon, 22 Apr 2024 15:03:05 -0700 Subject: [PATCH] Retry for 60 seconds to close a connection via HTTP API --- projects/Test/Common/Util.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/Test/Common/Util.cs b/projects/Test/Common/Util.cs index 02558e39c1..9282281f96 100644 --- a/projects/Test/Common/Util.cs +++ b/projects/Test/Common/Util.cs @@ -45,7 +45,7 @@ private static bool InitIsWindows() public static async Task CloseConnectionAsync(IConnection conn) { - ushort tries = 10; + ushort tries = 30; // 60 seconds EasyNetQ.Management.Client.Model.Connection connectionToClose = null; do {