Skip to content

Commit

Permalink
increase retries num
Browse files Browse the repository at this point in the history
  • Loading branch information
aakrem committed May 21, 2024
1 parent dd52fd3 commit 8fc7a38
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/check-app-accessibility/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ runs:
APP_URL="${APP_URL%/}/openapi.json"
echo "Checking if $APP_URL is accessible"
retries=5
retries=6
for i in $(seq 1 $retries); do
status_code=$(curl --max-time 60 --write-out %{http_code} --silent --output /dev/null --verbose $APP_URL)
echo "Attempt $i: Status code: $status_code"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cli-commands-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: cli commands tests

on:
pull_request:
# paths:
# - "agenta-backend/**"
# - "agenta-cli/**"
paths:
- "agenta-backend/**"
- "agenta-cli/**"

jobs:
serve-to-oss:
Expand Down

0 comments on commit 8fc7a38

Please sign in to comment.