From 88192552a08b6949b5e1c54de8ec46de0ea52633 Mon Sep 17 00:00:00 2001 From: Vincent Koc <25068+vincentkoc@users.noreply.github.com> Date: Sat, 4 Jul 2026 10:24:57 -0700 Subject: [PATCH] fix(e2e): allow Linux onboarding to finish --- scripts/e2e/parallels/linux-smoke.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/scripts/e2e/parallels/linux-smoke.ts b/scripts/e2e/parallels/linux-smoke.ts index f732f29d4614..b6ceb1e85f90 100755 --- a/scripts/e2e/parallels/linux-smoke.ts +++ b/scripts/e2e/parallels/linux-smoke.ts @@ -331,7 +331,7 @@ class LinuxSmoke extends SmokeRunController { ); this.status.freshVersion = await this.extractLastVersion("fresh.install-main"); await this.phase("fresh.verify-main-version", 90, () => this.verifyTargetVersion()); - await this.phase("fresh.onboard-ref", 180, () => this.runRefOnboard()); + await this.phase("fresh.onboard-ref", 420, () => this.runRefOnboard()); await this.phase("fresh.inject-bad-plugin", 90, () => this.maybeInjectBadPluginFixture("fresh"), ); @@ -366,7 +366,7 @@ class LinuxSmoke extends SmokeRunController { await this.phase("upgrade.inject-bad-plugin", 90, () => this.maybeInjectBadPluginFixture("upgrade"), ); - await this.phase("upgrade.onboard-ref", 180, () => this.runRefOnboard()); + await this.phase("upgrade.onboard-ref", 420, () => this.runRefOnboard()); await this.phase("upgrade.gateway-start", 240, () => this.startGatewayBackground()); await this.phase("upgrade.bad-plugin-diagnostic", 90, () => this.maybeVerifyBadPluginDiagnostic("upgrade"), @@ -514,9 +514,7 @@ if command -v curl >/dev/null 2>&1; then url, )} -o ${shellQuote(outputPath)} else - wget -q --timeout=10 --read-timeout=120 --tries=3 -O ${shellQuote(outputPath)} ${shellQuote( - url, - )} + wget -q --timeout=10 --read-timeout=120 --tries=3 -O ${shellQuote(outputPath)} ${shellQuote(url)} fi`); }