diff options
author | Evgeniy Ivanov <eivanov89@ydb.tech> | 2024-01-27 21:37:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-27 21:37:07 +0100 |
commit | 62f8e34758ea40a8f7fecd45d76ba7c622c49ebf (patch) | |
tree | d7eb88fdea180e60ceb30a478ef2a8a9dd7350d9 | |
parent | 5098226b0a568f9ba920d453160f10f397af513e (diff) | |
download | ydb-62f8e34758ea40a8f7fecd45d76ba7c622c49ebf.tar.gz |
KIKIMR-20842: make error non-retryable again (#1364)
-rw-r--r-- | ydb/core/kqp/executer_actor/kqp_data_executer.cpp | 5 |
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); } |