Skip to content

Commit 5fc09ca

Browse files
fix signal value (#6314)
1 parent 4589784 commit 5fc09ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/tx/conveyor/service/service.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ void TDistributor::HandleMain(TEvInternal::TEvTaskProcessedResult::TPtr& ev) {
3636
Counters.ExecuteHistogram->Collect(dExecution.MilliSeconds());
3737
if (Waiting.size()) {
3838
auto task = Waiting.pop();
39-
Counters.WaitingHistogram->Collect((ev->Get()->GetStartInstant() - task.GetCreateInstant()).MilliSeconds());
39+
Counters.WaitingHistogram->Collect((now - task.GetCreateInstant()).MilliSeconds());
4040
task.OnBeforeStart();
4141
Send(ev->Sender, new TEvInternal::TEvNewTask(task));
4242
} else {

0 commit comments

Comments
 (0)