From a1cbc5d1d4d2c3313ae04c8e464a4ddc255cfae0 Mon Sep 17 00:00:00 2001 From: Erik Tate Date: Wed, 11 Dec 2024 16:18:56 -0500 Subject: [PATCH] extending session termination timeout to allow for slower execution on weaker hardware without failing tests (#50056) --- integration/integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/integration_test.go b/integration/integration_test.go index e1f3e9e07796b..df22af3ee9598 100644 --- a/integration/integration_test.go +++ b/integration/integration_test.go @@ -930,7 +930,7 @@ func testSessionRecordingModes(t *testing.T, suite *integrationTestSuite) { // waitSessionTermination wait until the errCh returns something and assert // it with the provided function. waitSessionTermination := func(t *testing.T, errCh chan error, errorAssertion require.ErrorAssertionFunc) { - errorAssertion(t, waitForError(errCh, 10*time.Second)) + errorAssertion(t, waitForError(errCh, 30*time.Second)) } // enableDiskFailure changes the OpenFileFunc on filesession package. The