From 865f6f902c6390c407a113274830dcdf906c9906 Mon Sep 17 00:00:00 2001 From: Bill Stoddard Date: Mon, 14 Jan 2002 14:39:51 +0000 Subject: [PATCH] Log a more friendly message for server timeout. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@92850 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/http_protocol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/http_protocol.c b/src/main/http_protocol.c index 26240558aeb..c5a0c22ffa3 100644 --- a/src/main/http_protocol.c +++ b/src/main/http_protocol.c @@ -2906,7 +2906,7 @@ API_EXPORT(void) ap_send_error_response(request_rec *r, int recursive_error) "This indicates a configuration error.

\n", NULL); break; case HTTP_REQUEST_TIME_OUT: - ap_rputs("I'm tired of waiting for your request.\n", r); + ap_rputs("Server timeout waiting for the HTTP request from the client.\n", r); break; case HTTP_GONE: ap_rvputs(r, "The requested resource
", -- 2.47.2