Skip to content

Commit 94b8728

Browse files
committed
Add --no-proxy to curl command in check-grid
Fixes: #2431 Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent 36ba187 commit 94b8728

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Base/check-grid.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ while [[ $# -gt 0 ]]; do
2727
esac
2828
done
2929

30-
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
30+
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 commit comments

Comments
 (0)