Skip to content

Commit

Permalink
Bump timeouts in case it's compile times taking ages..
Browse files Browse the repository at this point in the history
  • Loading branch information
kegsay committed Jan 15, 2024
1 parent 9722c83 commit 5e677cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/client_connectivity_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand All @@ -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)
Expand Down

0 comments on commit 5e677cb

Please sign in to comment.