Skip to content

Commit

Permalink
Add --no-proxy to curl command in check-grid
Browse files Browse the repository at this point in the history
Fixes: #2431
Signed-off-by: Viet Nguyen Duc <[email protected]>
  • Loading branch information
VietND96 committed Oct 18, 2024
1 parent 36ba187 commit 94b8728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Base/check-grid.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ while [[ $# -gt 0 ]]; do
esac
done

curl -skSL -H "Authorization: Basic ${BASIC_AUTH}" ${SE_SERVER_PROTOCOL:-"http"}://${HOST}:${PORT}/wd/hub/status | jq -r '.value.ready' | grep -q "true" || exit 1
curl -skSL --noproxy "*" -H "Authorization: Basic ${BASIC_AUTH}" ${SE_SERVER_PROTOCOL:-"http"}://${HOST}:${PORT}/wd/hub/status | jq -r '.value.ready' | grep -q "true" || exit 1

0 comments on commit 94b8728

Please sign in to comment.