From d56973ae0537cf69ee2543494934fefe836de776 Mon Sep 17 00:00:00 2001 From: Jeremy Yang Date: Mon, 31 Oct 2022 16:13:11 +0000 Subject: [PATCH] roachtest/awsdms: Increase awsdwsWaitTimeLimit This commit increases the awsdmsWaitTimeLimit from 30 minutes to 1 hour. We were seeing some timeouts due to resources not coming up in time in #90515. Bumping the timeout by 30 minutes to see if this can help reduce the number of flakes for the test. Fixes: #90515 Release note: None --- pkg/cmd/roachtest/tests/awsdms.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/roachtest/tests/awsdms.go b/pkg/cmd/roachtest/tests/awsdms.go index 5e8ef88ddd2c..6eeca678206c 100644 --- a/pkg/cmd/roachtest/tests/awsdms.go +++ b/pkg/cmd/roachtest/tests/awsdms.go @@ -38,7 +38,7 @@ import ( ) const ( - awsdmsWaitTimeLimit = 30 * time.Minute + awsdmsWaitTimeLimit = 1 * time.Hour awsdmsUser = "cockroachdbtest" awsdmsDatabase = "rdsdb" awsdmsCRDBDatabase = "defaultdb"