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 4c6f641 commit bc69086Copy full SHA for bc69086
ydb/core/tx/tx_proxy/upload_rows_common_impl.h
@@ -82,9 +82,9 @@ class TUploadCounters: public NColumnShard::TCommonCountersOwner {
82
}
83
84
void OnCommitFinished() {
85
- ReplyFinished = TMonotonic::Now();
86
- AFL_VERIFY(CommitFinished);
87
- Owner.CommitDuration->Collect((*ReplyFinished - Start).MilliSeconds());
+ CommitFinished = TMonotonic::Now();
+ AFL_VERIFY(CommitStarted);
+ Owner.CommitDuration->Collect((*CommitFinished - *CommitStarted).MilliSeconds());
88
89
90
void OnReply(const ::Ydb::StatusIds::StatusCode code) {
0 commit comments