replaced the missed set() call
Signed-off-by: Ravi Kumar <kumarravi1165@gmail.com>
This commit is contained in:
parent
69a2558883
commit
be8d57e3cb
|
@ -70,7 +70,7 @@ public class MonitoredQueuedThreadPool extends QueuedThreadPool
|
|||
long queueLatency = System.nanoTime() - begin;
|
||||
queueStats.decrement();
|
||||
threadStats.increment();
|
||||
queueLatencyStats.set(queueLatency);
|
||||
queueLatencyStats.record(queueLatency);
|
||||
long start = System.nanoTime();
|
||||
try
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue