aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeniy Ivanov <eivanov89@ydb.tech>2024-01-27 21:37:07 +0100
committerGitHub <noreply@github.com>2024-01-27 21:37:07 +0100
commit62f8e34758ea40a8f7fecd45d76ba7c622c49ebf (patch)
treed7eb88fdea180e60ceb30a478ef2a8a9dd7350d9
parent5098226b0a568f9ba920d453160f10f397af513e (diff)
downloadydb-62f8e34758ea40a8f7fecd45d76ba7c622c49ebf.tar.gz
KIKIMR-20842: make error non-retryable again (#1364)
-rw-r--r--ydb/core/kqp/executer_actor/kqp_data_executer.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/ydb/core/kqp/executer_actor/kqp_data_executer.cpp b/ydb/core/kqp/executer_actor/kqp_data_executer.cpp
index 3a12ee498c..ea44de20d6 100644
--- a/ydb/core/kqp/executer_actor/kqp_data_executer.cpp
+++ b/ydb/core/kqp/executer_actor/kqp_data_executer.cpp
@@ -1271,11 +1271,6 @@ private:
LOG_N("Shard " << msg->TabletId << " lost pipe while waiting for reply"
<< (msg->NotDelivered ? " (last message not delivered)" : ""));
- if (ReadOnlyTx && msg->NotDelivered) {
- CancelProposal(msg->TabletId);
- return ReplyUnavailable(TStringBuilder() << "Could not deliver program to shard " << msg->TabletId);
- }
-
return ReplyTxStateUnknown(msg->TabletId);
}