aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2012-07-09 02:36:09 +0100
committerMatthew Wild <mwild1@gmail.com>2012-07-09 02:36:09 +0100
commit08553fc31ba154e7cabbd2c0540a12248a1924b4 (patch)
tree42e54661043d57357f9a0f163fc92702143d3252
parent58e466f88e148ca443eb5bb4a5940feb300ce2fc (diff)
parent88f2090c5b3ace2f2f07de9735fa60307a19d010 (diff)
downloadprosody-08553fc31ba154e7cabbd2c0540a12248a1924b4.tar.gz
prosody-08553fc31ba154e7cabbd2c0540a12248a1924b4.zip
Merge 0.9->trunk
-rw-r--r--util/throttle.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/throttle.lua b/util/throttle.lua
index 2e901158..55e1d07b 100644
--- a/util/throttle.lua
+++ b/util/throttle.lua
@@ -1,6 +1,7 @@
local gettime = require "socket".gettime;
local setmetatable = setmetatable;
+local floor = math.floor;
module "throttle"
@@ -11,7 +12,7 @@ function throttle:update()
local newt = gettime();
local elapsed = newt - self.t;
self.t = newt;
- local balance = self.rate * elapsed + self.balance;
+ local balance = floor(self.rate * elapsed) + self.balance;
if balance > self.max then
self.balance = self.max;
else