From 35cb98635685deb880c41f8564d520864d7ec5fa Mon Sep 17 00:00:00 2001
From: Nick Kew
Date: Wed, 7 Jan 2009 21:28:36 +0000
Subject: [PATCH] Improve canned 504 error message in the light of r729586 and
covener's comment.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@732504 13f79535-47bb-0310-9956-ffa450edef68
---
modules/http/http_protocol.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c
index a0207b0f5a3..d8c85a83524 100644
--- a/modules/http/http_protocol.c
+++ b/modules/http/http_protocol.c
@@ -1058,8 +1058,8 @@ static const char *get_canned_error_string(int status,
"request due to maintenance downtime or capacity\n"
"problems. Please try again later.
\n");
case HTTP_GATEWAY_TIME_OUT:
- return("The proxy server did not receive a timely response\n"
- "from the upstream server.
\n");
+ return("The gateway did not receive a timely response\n"
+ "from the upstream server or application.
\n");
case HTTP_NOT_EXTENDED:
return("A mandatory extension policy in the request is not\n"
"accepted by the server for this resource.
\n");
--
2.47.3