Skip to content

Commit

Permalink
Rename http_server response delay to not shadow log timestamp format (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
funkeleinhorn authored Jun 22, 2024
1 parent 0b9f50b commit 0e536e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/http_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -1777,7 +1777,7 @@ usage (const char *prog)
" write; negative means always use remaining file size.\n"
" Incompatible with -w.\n"
#endif
" -y DELAY Delay response for this many seconds -- use for debugging\n"
" -Y DELAY Delay response for this many seconds -- use for debugging\n"
" -Q ALPN Use hq mode; ALPN could be \"hq-29\", for example.\n"
, prog);
}
Expand Down Expand Up @@ -1987,7 +1987,7 @@ main (int argc, char **argv)
"cannot use -P\n");
exit(EXIT_FAILURE);
#endif
case 'y':
case 'Y':
server_ctx.delay_resp_sec = atoi(optarg);
break;
case 'h':
Expand Down

0 comments on commit 0e536e0

Please sign in to comment.