# HG changeset patch # User Matthew Wild # Date 1521890944 0 # Node ID c7122fbe16001dd164309710220fdf199b76ab0d # Parent 019b4b3dd5ad4f8bb77340de24b7655016d1b4b7 net.http: Fix for Lua 5.2: return error from error handler (xpcall changed) diff -r 019b4b3dd5ad -r c7122fbe1600 net/http.lua --- a/net/http.lua Sat Mar 24 21:39:03 2018 +0100 +++ b/net/http.lua Sat Mar 24 11:29:04 2018 +0000 @@ -36,7 +36,7 @@ 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((...)));