File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
ydb/core/tx/columnshard/engines/reader/actor Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -172,10 +172,7 @@ void TColumnShardScan::HandleScan(TEvents::TEvWakeup::TPtr& /*ev*/) {
172
172
<< " txId: " << TxId << " scanId: " << ScanId << " gen: " << ScanGen << " tablet: " << TabletId);
173
173
174
174
CheckHanging (true );
175
- if (!!AckReceivedInstant && TMonotonic::Now () >= GetScanDeadline ()) {
176
- SendScanError (" ColumnShard scanner timeout: HAS_ACK=1" );
177
- Finish (NColumnShard::TScanCounters::EStatusFinish::Deadline);
178
- } else if (!AckReceivedInstant && TMonotonic::Now () >= GetComputeDeadline ()) {
175
+ if (!AckReceivedInstant && TMonotonic::Now () >= GetComputeDeadline ()) {
179
176
SendScanError (" ColumnShard scanner timeout: HAS_ACK=0" );
180
177
Finish (NColumnShard::TScanCounters::EStatusFinish::Deadline);
181
178
} else {
You can’t perform that action at this time.
0 commit comments