diff options
author | Omar Polo <op@omarpolo.com> | 2021-10-04 09:34:39 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-10-04 09:34:39 +0000 |
commit | 260becda9c69d5c76ae8a0bdbc6f98781b615534 (patch) | |
tree | aff9ebdf91cb887e375f4d17777032e9108faf11 /regress | |
parent | d046e4d6b500583cda8d2561e47c790eaedd007f (diff) |
reduced the timeout time for single checks
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/lib.sh b/regress/lib.sh index 5eefb34..b38a729 100644 --- a/regress/lib.sh +++ b/regress/lib.sh @@ -78,19 +78,19 @@ setup_simple_test() { # usage: get <path> # return the body of the request on stdout get() { - $gg -T30 -b $ggflags "gemini://localhost:10965/$1" + $gg -T10 -b $ggflags "gemini://localhost:10965/$1" } # usage: head <path> # return the meta response line on stdout head() { - $gg -T30 -h $ggflags "gemini://localhost:10965/$1" + $gg -T10 -h $ggflags "gemini://localhost:10965/$1" } # usage: raw <path> # return both header and body raw() { - $gg -T30 $ggflags "gemini://localhost:10965/$1" + $gg -T10 $ggflags "gemini://localhost:10965/$1" } # usage: fetch <path> |