# HG changeset patch # User Kim Alvefur # Date 1375483989 -7200 # Node ID 38e56be1158443ecf4a74c2af7803726205a9fb6 # Parent 6fd328b8e1365add875abfac7ed05ee6939dbceb mod_bidi: Make sessions table weak diff -r 6fd328b8e136 -r 38e56be11584 mod_bidi/mod_bidi.lua --- a/mod_bidi/mod_bidi.lua Sat Aug 03 00:51:00 2013 +0200 +++ b/mod_bidi/mod_bidi.lua Sat Aug 03 00:53:09 2013 +0200 @@ -13,7 +13,7 @@ local xmlns_bidi_feature = "urn:xmpp:features:bidi" local xmlns_bidi = "urn:xmpp:bidi"; local secure_only = module:get_option_boolean("secure_bidi_only", true); -local bidi_sessions = module:shared"sessions"; +local bidi_sessions = module:shared"sessions-cache"; local function handleerr(err) log("error", "Traceback[s2s]: %s: %s", tostring(err), traceback()); end local function handlestanza(session, stanza)