Skip to content

Commit

Permalink
chore(gh): set runner wait timeout to 30 mins
Browse files Browse the repository at this point in the history
Some instances can be very slow to start up, timeout duration is increased to avoid false-positive spawn failure and thus having zombie instances in the wild.
  • Loading branch information
soonum committed Jul 10, 2024
1 parent 2c3ecb3 commit 9e939a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/gh.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async function getRunner(label) {
}

async function waitForRunnerRegistered(label) {
const timeoutSeconds = 900
const timeoutSeconds = 1800
const retryIntervalSeconds = 10
const quietPeriodSeconds = 30
let waitSeconds = 0
Expand Down

0 comments on commit 9e939a1

Please sign in to comment.