mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_proxy65: Only lock the reading side when throttling
This commit is contained in:
parent
2c89ba5b4b
commit
241f1dc323
1 changed files with 2 additions and 2 deletions
|
@ -262,7 +262,7 @@ function throttle_sending(sender, receiver)
|
|||
function receiver.sendbuffer()
|
||||
_sendbuffer();
|
||||
if sender_locked and receiver.bufferlen() < sender_lock_threshold then
|
||||
sender:lock(false); -- Unlock now
|
||||
sender:lock_read(false); -- Unlock now
|
||||
sender_locked = nil;
|
||||
end
|
||||
end
|
||||
|
@ -272,7 +272,7 @@ function throttle_sending(sender, receiver)
|
|||
_readbuffer();
|
||||
if not sender_locked and receiver.bufferlen() >= sender_lock_threshold then
|
||||
sender_locked = true;
|
||||
sender:lock(true);
|
||||
sender:lock_read(true);
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue