We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4589784 commit 5fc09caCopy full SHA for 5fc09ca
ydb/core/tx/conveyor/service/service.cpp
@@ -36,7 +36,7 @@ void TDistributor::HandleMain(TEvInternal::TEvTaskProcessedResult::TPtr& ev) {
36
Counters.ExecuteHistogram->Collect(dExecution.MilliSeconds());
37
if (Waiting.size()) {
38
auto task = Waiting.pop();
39
- Counters.WaitingHistogram->Collect((ev->Get()->GetStartInstant() - task.GetCreateInstant()).MilliSeconds());
+ Counters.WaitingHistogram->Collect((now - task.GetCreateInstant()).MilliSeconds());
40
task.OnBeforeStart();
41
Send(ev->Sender, new TEvInternal::TEvNewTask(task));
42
} else {
0 commit comments