Skip to content

Commit 7c328ef

Browse files
authored
Do not touch event after sending. (#13589)
1 parent 0907e21 commit 7c328ef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ydb/core/statistics/service/service_impl.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1047,13 +1047,13 @@ class TStatService : public TActorBootstrapped<TStatService> {
10471047
columnTags->Add(tag);
10481048
}
10491049

1050-
const auto round = AggregationStatistics.Round;
1051-
NTabletPipe::SendData(SelfId(), clientId, request.release(), round);
1052-
Schedule(Settings.StatisticsRequestTimeout, new TEvPrivate::TEvStatisticsRequestTimeout(round, tabletId));
1053-
10541050
SA_LOG_D("TEvStatisticsRequest send"
10551051
<< ", client id = " << clientId
10561052
<< ", path = " << *path);
1053+
1054+
const auto round = AggregationStatistics.Round;
1055+
NTabletPipe::SendData(SelfId(), clientId, request.release(), round);
1056+
Schedule(Settings.StatisticsRequestTimeout, new TEvPrivate::TEvStatisticsRequestTimeout(round, tabletId));
10571057
}
10581058

10591059
void OnTabletError(ui64 tabletId) {

0 commit comments

Comments
 (0)