mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +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
|
||||
|
||||
if readd then
|
||||
for _, timer in pairs(readd) do
|
||||
timers:insert(timer, timer[1]);
|
||||
for id, timer in pairs(readd) do
|
||||
timers:insert(timer, timer[1], id);
|
||||
end
|
||||
peek = timers:peek();
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue