Skip to content

Commit 8838fa8

Browse files
fix: revert auth verification timeout to non-fatal warning
Auth request verification is a supplementary check that happens after Authorino CR status is already confirmed ready. Timing out on the auth verification shouldn't be fatal - it should continue with a warning, similar to the gateway URL check. This reverts the timeout behavior to match the original intentional design: proceed with deployment even if auth verification times out. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent cc774ff commit 8838fa8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/deployment-helpers.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1427,6 +1427,6 @@ wait_authorino_ready() {
14271427
elapsed=$((elapsed + 2))
14281428
done
14291429

1430-
echo " ERROR: Auth request verification timed out after ${timeout}s"
1431-
return 1
1430+
echo " WARNING: Auth request verification timed out, continuing anyway"
1431+
return 0
14321432
}

0 commit comments

Comments
 (0)