Skip to content

Commit 9ff5a8c

Browse files
committed
server.sh: Make curl quieter
We don't want to suppress warnings with --silent, but we don't need the progress bar in the logs.
1 parent 3d57ef8 commit 9ff5a8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ for driver in "${!drivers[@]}"; do
265265
# propagated to the network hardware yet, which curl cannot.
266266
start=$(date +%s)
267267
backoff=1
268-
while ! curl --fail-with-body http://"$fip_address"/; do
268+
while ! curl --fail-with-body --no-progress-meter http://"$fip_address"/; do
269269
# This normally succeeds immediately, but we allow it up to
270270
# 300 seconds.
271271
if [ $(( $(date +%s)-start )) -gt 300 ]; then

0 commit comments

Comments
 (0)