# HG changeset patch # User Kim Alvefur # Date 1553217046 -3600 # Node ID b5ac12f97f342fbc3ade7a8863cc666eb1d39757 # Parent e3ad2c84543107518b0589f85e8147d3c5d28315 mod_storage_sql: Fix to use currently queried store Was using the previously queried store due to this being cached in an upvalue. diff -r e3ad2c845431 -r b5ac12f97f34 plugins/mod_storage_sql.lua --- a/plugins/mod_storage_sql.lua Fri Mar 22 02:09:38 2019 +0100 +++ b/plugins/mod_storage_sql.lua Fri Mar 22 02:10:46 2019 +0100 @@ -238,7 +238,8 @@ }; archive_store.__index = archive_store function archive_store:append(username, key, value, when, with) - local cache_key = jid_join(username, host, self.store); + local user,store = username,self.store; + local cache_key = jid_join(username, host, store); local item_count = archive_item_count_cache:get(cache_key); if not item_count then local ok, ret = engine:transaction(function() @@ -265,7 +266,6 @@ return nil, "quota-limit"; end - local user,store = username,self.store; when = when or os.time(); with = with or ""; local ok, ret = engine:transaction(function()