aboutsummaryrefslogtreecommitdiffstats
path: root/util/queue.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2019-03-26 13:51:06 +0000
committerMatthew Wild <mwild1@gmail.com>2019-03-26 13:51:06 +0000
commitde724221378ba5772c9cfdb2d40c43619da8166f (patch)
tree11c0f79986e893ea87243cf64d828f22dea01b16 /util/queue.lua
parente1b559853fb0f6e0967124a135e1d380d02316d9 (diff)
downloadprosody-de724221378ba5772c9cfdb2d40c43619da8166f.tar.gz
prosody-de724221378ba5772c9cfdb2d40c43619da8166f.zip
Backed out changeset 3eea63a68e0f
Commit included intended changes to loggingmanager
Diffstat (limited to 'util/queue.lua')
-rw-r--r--util/queue.lua9
1 files changed, 5 insertions, 4 deletions
diff --git a/util/queue.lua b/util/queue.lua
index 66ed098b..e63b3f1c 100644
--- a/util/queue.lua
+++ b/util/queue.lua
@@ -52,15 +52,16 @@ local function new(size, allow_wrapping)
return t[tail];
end;
items = function (self)
- return function (_, pos)
- if pos >= items then
+ --luacheck: ignore 431/t
+ return function (t, pos)
+ if pos >= t:count() then
return nil;
end
local read_pos = tail + pos;
- if read_pos > self.size then
+ if read_pos > t.size then
read_pos = (read_pos%size);
end
- return pos+1, t[read_pos];
+ return pos+1, t._items[read_pos];
end, self, 0;
end;
consume = function (self)