mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
net.server_epoll: Fix to preserve ids of readded timers
Likely affected rescheduling but have no reports of this. After readding a timer, it would have been issued a new id. Rescheduling would use the previous id, thus not working.
This commit is contained in:
parent
5f69d4a129
commit
6be7cf935f
1 changed files with 2 additions and 2 deletions
|
@ -122,8 +122,8 @@ local function runtimers(next_delay, min_wait)
|
||||||
end
|
end
|
||||||
|
|
||||||
if readd then
|
if readd then
|
||||||
for _, timer in pairs(readd) do
|
for id, timer in pairs(readd) do
|
||||||
timers:insert(timer, timer[1]);
|
timers:insert(timer, timer[1], id);
|
||||||
end
|
end
|
||||||
peek = timers:peek();
|
peek = timers:peek();
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue