1
0
mirror of https://github.com/lammertb/libhttp.git synced 2026-01-03 16:02:30 +03:00

retry database operation if database is busy

This commit is contained in:
bel
2013-11-02 03:15:46 +01:00
parent 8452297a0c
commit f04a3e6723

View File

@@ -20,11 +20,11 @@ end
local function logDB(method)
-- Add entry about this request
local r;
--repeat
repeat
r = db:exec([[INSERT INTO requests VALUES(NULL, datetime("now"), "]] .. method .. [[", "]] .. mg.request_info.uri .. [[", "]] .. mg.request_info.remote_port .. [[");]]);
--until r~=5;
until r~=5;
---[[
--[[
-- alternative logging (to a file)
local f = io.open("R:\\log.txt", "a");
f:write(os.date() .. " - " .. method .. " - " .. mg.request_info.uri .. " - " .. mg.request_info.remote_port .. " <" .. r .. ">\n")