mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_storage_internal: Close lazy-loading list abstraction after trim
Should be done here too.
This commit is contained in:
parent
15f487b789
commit
c47cfefec0
1 changed files with 6 additions and 0 deletions
|
@ -360,6 +360,9 @@ function archive:trim(username, to_when)
|
||||||
-- shortcut: check if the last item should be trimmed, if so, drop the whole archive
|
-- shortcut: check if the last item should be trimmed, if so, drop the whole archive
|
||||||
local last = list[#list].when or datetime.parse(list[#list].attr.stamp);
|
local last = list[#list].when or datetime.parse(list[#list].attr.stamp);
|
||||||
if last <= to_when then
|
if last <= to_when then
|
||||||
|
if list.close then
|
||||||
|
list:close()
|
||||||
|
end
|
||||||
return datamanager.list_store(username, host, self.store, nil);
|
return datamanager.list_store(username, host, self.store, nil);
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -368,6 +371,9 @@ function archive:trim(username, to_when)
|
||||||
local when = item.when or datetime.parse(item.attr.stamp);
|
local when = item.when or datetime.parse(item.attr.stamp);
|
||||||
return to_when - when;
|
return to_when - when;
|
||||||
end);
|
end);
|
||||||
|
if list.close then
|
||||||
|
list:close()
|
||||||
|
end
|
||||||
-- TODO if exact then ... off by one?
|
-- TODO if exact then ... off by one?
|
||||||
if i == 1 then return 0; end
|
if i == 1 then return 0; end
|
||||||
local ok, err = datamanager.list_shift(username, host, self.store, i);
|
local ok, err = datamanager.list_shift(username, host, self.store, i);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue