summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammed Al Sahaf <msaa1990@gmail.com>2024-08-22 20:32:44 +0300
committerGitHub <noreply@github.com>2024-08-22 11:32:44 -0600
commit8af646730be93f4a00b873d1822bfde6be106696 (patch)
treeadd698585ffed4b62d8daed1ecd77d261880afc8
parent098897bdea67eb31634f440a4d9a69b5753a9ac3 (diff)
caddyhttp: run `error` (msg) through replacer (#6536)
* error: run `error` (msg) through replacer Signed-off-by: Mohammed Al Sahaf <msaa1990@gmail.com> * fix integration test Signed-off-by: Mohammed Al Sahaf <msaa1990@gmail.com> --------- Signed-off-by: Mohammed Al Sahaf <msaa1990@gmail.com>
-rw-r--r--caddytest/caddytest_test.go1
-rw-r--r--modules/caddyhttp/staticerror.go3
2 files changed, 1 insertions, 3 deletions
diff --git a/caddytest/caddytest_test.go b/caddytest/caddytest_test.go
index 937537fa..a9d5da93 100644
--- a/caddytest/caddytest_test.go
+++ b/caddytest/caddytest_test.go
@@ -84,7 +84,6 @@ func TestLoadUnorderedJSON(t *testing.T) {
"servers": {
"s_server": {
"listen": [
- ":9443",
":9080"
],
"routes": [
diff --git a/modules/caddyhttp/staticerror.go b/modules/caddyhttp/staticerror.go
index b6e10ff3..aeb31140 100644
--- a/modules/caddyhttp/staticerror.go
+++ b/modules/caddyhttp/staticerror.go
@@ -105,8 +105,7 @@ func (e StaticError) ServeHTTP(w http.ResponseWriter, r *http.Request, _ Handler
}
statusCode = intVal
}
-
- return Error(statusCode, fmt.Errorf("%s", e.Error))
+ return Error(statusCode, fmt.Errorf("%s", repl.ReplaceKnown(e.Error, "")))
}
// Interface guard