From 825ce2905ffd8142be506d11ca66f8e9c5dc4329 Mon Sep 17 00:00:00 2001 From: J M Rossy Date: Tue, 10 Oct 2023 16:27:56 -0400 Subject: [PATCH] Increase Kathy timeout to 12 minutes (#2789) Per discussion in standup yesterday --- typescript/infra/config/environments/mainnet2/helloworld.ts | 4 ++-- typescript/infra/config/environments/testnet3/helloworld.ts | 4 ++-- typescript/infra/scripts/helloworld/kathy.ts | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/typescript/infra/config/environments/mainnet2/helloworld.ts b/typescript/infra/config/environments/mainnet2/helloworld.ts index 62240a86f..b6ea232f7 100644 --- a/typescript/infra/config/environments/mainnet2/helloworld.ts +++ b/typescript/infra/config/environments/mainnet2/helloworld.ts @@ -13,7 +13,7 @@ export const hyperlane: HelloWorldConfig = { kathy: { docker: { repo: 'gcr.io/abacus-labs-dev/hyperlane-monorepo', - tag: '86aec06-20231005-180845', + tag: '01dcf5d-20231010-145824', }, chainsToSkip: [], runEnv: environment, @@ -34,7 +34,7 @@ export const releaseCandidate: HelloWorldConfig = { kathy: { docker: { repo: 'gcr.io/abacus-labs-dev/hyperlane-monorepo', - tag: '86aec06-20231005-180845', + tag: '01dcf5d-20231010-145824', }, chainsToSkip: [], runEnv: environment, diff --git a/typescript/infra/config/environments/testnet3/helloworld.ts b/typescript/infra/config/environments/testnet3/helloworld.ts index 89b679c84..bf596cedd 100644 --- a/typescript/infra/config/environments/testnet3/helloworld.ts +++ b/typescript/infra/config/environments/testnet3/helloworld.ts @@ -13,7 +13,7 @@ export const hyperlaneHelloworld: HelloWorldConfig = { kathy: { docker: { repo: 'gcr.io/abacus-labs-dev/hyperlane-monorepo', - tag: '86aec06-20231005-180845', + tag: '01dcf5d-20231010-145824', }, chainsToSkip: [], runEnv: environment, @@ -33,7 +33,7 @@ export const releaseCandidateHelloworld: HelloWorldConfig = { kathy: { docker: { repo: 'gcr.io/abacus-labs-dev/hyperlane-monorepo', - tag: '86aec06-20231005-180845', + tag: '01dcf5d-20231010-145824', }, chainsToSkip: [], runEnv: environment, diff --git a/typescript/infra/scripts/helloworld/kathy.ts b/typescript/infra/scripts/helloworld/kathy.ts index 955309cf2..85778d5d3 100644 --- a/typescript/infra/scripts/helloworld/kathy.ts +++ b/typescript/infra/scripts/helloworld/kathy.ts @@ -495,8 +495,8 @@ async function sendMessage( }); await timeout( - // Will check for up to 9 minutes - core.waitForMessagesProcessed(origin, destination, receipt, 5000, 108), + // Will check for up to 12 minutes + core.waitForMessagesProcessed(origin, destination, receipt, 5000, 144), messageReceiptTimeout, 'Timeout waiting for message to be received', );