From 0cffb61aab90a0b242d81d96f2f7949b455e1149 Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Sat, 27 Jan 2024 11:49:44 +0000 Subject: [PATCH] * test/request.c (fail_excess_1xx): Try harder to timeout. --- test/request.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/request.c b/test/request.c index 4b46ca69..f99752a7 100644 --- a/test/request.c +++ b/test/request.c @@ -2274,7 +2274,7 @@ static int safe_flags(void) /* Hit the timeout (2 seconds) for reading interim responses. */ static int fail_excess_1xx(void) { - struct s1xx_args args = {2000000, 0}; + struct s1xx_args args = {20000000, 0}; return fail_request_with_error(0, serve_1xx, &args, 0, "Timed out reading interim responses"); }