s2smanager: Fix a traceback when we close a s2s connection ourselves (thanks for the testing Zash).

This commit is contained in:
Waqas Hussain 2012-06-13 11:47:04 +05:00
parent 94d42dfe87
commit 6e9784727f

View file

@ -133,7 +133,7 @@ local resting_session = { -- Resting, not dead
function retire_session(session, reason)
local log = session.log or log;
for k in pairs(session) do
if k ~= "trace" and k ~= "log" and k ~= "id" then
if k ~= "trace" and k ~= "log" and k ~= "id" and k ~= "conn" then
session[k] = nil;
end
end