From 5e677cba0b38b129d0255d4d080321e0449c9239 Mon Sep 17 00:00:00 2001 From: Kegan Dougal <7190048+kegsay@users.noreply.github.com> Date: Mon, 15 Jan 2024 08:30:47 +0000 Subject: [PATCH] Bump timeouts in case it's compile times taking ages.. --- tests/client_connectivity_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/client_connectivity_test.go b/tests/client_connectivity_test.go index 830bf97..0d233bd 100644 --- a/tests/client_connectivity_test.go +++ b/tests/client_connectivity_test.go @@ -120,7 +120,7 @@ func TestSigkillBeforeKeysUploadResponse(t *testing.T) { BaseURL: tc.Deployment.ReverseProxyURLForHS(clientType.HS), SSURL: tc.Deployment.SlidingSyncURL(t), }) - cmd.WaitDelay = 3 * time.Second + cmd.WaitDelay = 10 * time.Second defer close() waiter := helpers.NewWaiter() terminateClient = func() { @@ -138,7 +138,7 @@ func TestSigkillBeforeKeysUploadResponse(t *testing.T) { cmd.Stdout = os.Stdout cmd.Stderr = os.Stderr cmd.Start() - waiter.Waitf(t, 5*time.Second, "failed to terminate process") + waiter.Waitf(t, 20*time.Second, "failed to terminate process") t.Logf("terminated process, making new client") // now make the same client cfg.BaseURL = tc.Deployment.ReverseProxyURLForHS(clientType.HS)