Skip to content

Commit

Permalink
chore: fix curl failed to request https urls (#2378)
Browse files Browse the repository at this point in the history
  • Loading branch information
simon824 authored Dec 5, 2023
1 parent 20d1e52 commit e8fb269
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ function wait_for_startup() {
return 1
fi

status=$(curl -I -s -w "%{http_code}" -o /dev/null "$server_url")
status=$(curl -I -s -k -w "%{http_code}" -o /dev/null "$server_url")
if [[ $status -eq 200 || $status -eq 401 ]]; then
echo "OK"
echo "Started [pid $pid]"
Expand Down

0 comments on commit e8fb269

Please sign in to comment.