From 73fed1ef9e5dd4d61b0e4b96e385f111947b15fd Mon Sep 17 00:00:00 2001 From: Eli Polonsky Date: Wed, 25 Sep 2024 21:12:54 +0300 Subject: [PATCH] chore: extend timeout for hotswap test (#31559) Out of our last 6 pipeline failures, 4 were: ```console hotswap deployment for ecs service detects failed deployment and errors Timeout: test took more than 600s to complete ``` This is sporadic, so i'm trying to make it more stable by extending the timeout, which will now be 1800s. https://github.com/aws/aws-cdk/blob/16b74f337e351b177aaeed2d80c519ff264c3e11/packages/%40aws-cdk-testing/cli-integ/lib/with-cdk-app.ts#L16-L17 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- .../cli-integ/tests/cli-integ-tests/cli.integtest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/cli.integtest.ts b/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/cli.integtest.ts index 578d90e90497b..aac17c71ffca6 100644 --- a/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/cli.integtest.ts +++ b/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/cli.integtest.ts @@ -2185,7 +2185,7 @@ integTest( integTest( 'hotswap deployment for ecs service detects failed deployment and errors', - withDefaultFixture(async (fixture) => { + withExtendedTimeoutFixture(async (fixture) => { // GIVEN await fixture.cdkDeploy('ecs-hotswap');