mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.promise: Remove references to callbacks after settling promise
This is to help the garbage collector.
This commit is contained in:
parent
92445d93df
commit
2d28fb93b4
1 changed files with 3 additions and 0 deletions
|
@ -49,6 +49,9 @@ local function promise_settle(promise, new_state, new_next, cbs, value)
|
|||
for _, cb in ipairs(cbs) do
|
||||
cb(value);
|
||||
end
|
||||
-- No need to keep references to callbacks
|
||||
promise._pending_on_fulfilled = nil;
|
||||
promise._pending_on_rejected = nil;
|
||||
return true;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue