aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2018-03-24 11:29:04 +0000
committerMatthew Wild <mwild1@gmail.com>2018-03-24 11:29:04 +0000
commitcf9743127cbca95472fde5f6d57956002272bd2d (patch)
tree139c9218eeda4771a623b1cecc5c9994f7c92705
parent9cd0153dd77ff1a2ecb4f5e3c0bc9719b263c238 (diff)
downloadprosody-cf9743127cbca95472fde5f6d57956002272bd2d.tar.gz
prosody-cf9743127cbca95472fde5f6d57956002272bd2d.zip
net.http: Fix for Lua 5.2: return error from error handler (xpcall changed)
-rw-r--r--net/http.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http.lua b/net/http.lua
index c17d734c..01dfd7bc 100644
--- a/net/http.lua
+++ b/net/http.lua
@@ -36,7 +36,7 @@ local function make_id(req) return (tostring(req):match("%x+$")); end
local listener = { default_port = 80, default_mode = "*a" };
-- Request-related helper functions
-local function handleerr(err) log("error", "Traceback[http]: %s", traceback(tostring(err), 2)); end
+local function handleerr(err) log("error", "Traceback[http]: %s", traceback(tostring(err), 2)); return err; end
local function log_if_failed(id, ret, ...)
if not ret then
log("error", "Request '%s': error in callback: %s", id, tostring((...)));