mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_limits: Remove an unused variable
Hope this isn't meant to be used. 'outstanding' seems to be the more useful value anyways?
This commit is contained in:
parent
72a8c497ec
commit
7c8ad7bede
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ local default_filter_set = {};
|
|||
function default_filter_set.bytes_in(bytes, session)
|
||||
local sess_throttle = session.throttle;
|
||||
if sess_throttle then
|
||||
local ok, balance, outstanding = sess_throttle:poll(#bytes, true);
|
||||
local ok, _, outstanding = sess_throttle:poll(#bytes, true);
|
||||
if not ok then
|
||||
session.log("debug", "Session over rate limit (%d) with %d (by %d), pausing", sess_throttle.max, #bytes, outstanding);
|
||||
outstanding = ceil(outstanding);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue