mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.statistics,statsd,throttle,timer: Replace dependency on LuaSockect with util.time for precision time
This commit is contained in:
parent
1dc92981c7
commit
83d1e9570a
4 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
local t_sort = table.sort
|
||||
local m_floor = math.floor;
|
||||
local time = require "socket".gettime;
|
||||
local time = require "util.time".now;
|
||||
|
||||
local function nop_function() end
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
local socket = require "socket";
|
||||
|
||||
local time = require "socket".gettime;
|
||||
local time = require "util.time".now
|
||||
|
||||
local function new(config)
|
||||
if not config or not config.statsd_server then
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
local gettime = require "socket".gettime;
|
||||
local gettime = require "util.time".now
|
||||
local setmetatable = setmetatable;
|
||||
local floor = math.floor;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue