Skip to content

Commit

Permalink
Increase attempts
Browse files Browse the repository at this point in the history
Increase attempts to check for the deployed application being healthy.
  • Loading branch information
martincostello committed Apr 29, 2024
1 parent 4393e2e commit 15dae99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -188,7 +188,7 @@ jobs:
APPLICATION_URL: ${{ env.APPLICATION_URL_DEV }}
run: |
$delay = 10
$limit = 10
$limit = 15
$success = $false
for ($i = 0; $i -lt $limit; $i++) {
$response = $null
Expand Down Expand Up @@ -305,7 +305,7 @@ jobs:
APPLICATION_URL: ${{ env.APPLICATION_URL_PROD }}
run: |
$delay = 10
$limit = 10
$limit = 15
$success = $false
for ($i = 0; $i -lt $limit; $i++) {
$response = $null
Expand Down

0 comments on commit 15dae99

Please sign in to comment.