diff options
author | Kim Alvefur <zash@zash.se> | 2017-03-20 00:48:28 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-03-20 00:48:28 +0100 |
commit | 2200724140d472766c3e78bab761f9cbce97b020 (patch) | |
tree | baa76027e2950ac788347cbda919e81abc010108 /util/timer.lua | |
parent | fb586ecffc730c4ab451936d4172086e673c931e (diff) | |
download | prosody-2200724140d472766c3e78bab761f9cbce97b020.tar.gz prosody-2200724140d472766c3e78bab761f9cbce97b020.zip |
util.statistics,statsd,throttle,timer: Replace dependency on LuaSockect with util.time for precision time
Diffstat (limited to 'util/timer.lua')
-rw-r--r-- | util/timer.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/timer.lua b/util/timer.lua index 3713625d..7e2e9414 100644 --- a/util/timer.lua +++ b/util/timer.lua @@ -9,7 +9,7 @@ local server = require "net.server"; local math_min = math.min local math_huge = math.huge -local get_time = require "socket".gettime; +local get_time = require "util.time".now local t_insert = table.insert; local pairs = pairs; local type = type; |