aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Efimov <34044711+adameat@users.noreply.github.com>2024-01-03 19:21:03 +0100
committerGitHub <noreply@github.com>2024-01-03 21:21:03 +0300
commit45bff62e84607049deceaab71c15b945e2809a05 (patch)
tree67999116e86a86260a47784449448ab58ead1677
parent37ab7bf2cd3bb7b063eb2c6850ea1bca5a2ae086 (diff)
downloadydb-45bff62e84607049deceaab71c15b945e2809a05.tar.gz
suppress unnecessaryVERIFY which could rise on downgrade scenario (#840)
-rw-r--r--ydb/core/tx/schemeshard/schemeshard__init.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/ydb/core/tx/schemeshard/schemeshard__init.cpp b/ydb/core/tx/schemeshard/schemeshard__init.cpp
index e1f75bf1b4..f0ca056958 100644
--- a/ydb/core/tx/schemeshard/schemeshard__init.cpp
+++ b/ydb/core/tx/schemeshard/schemeshard__init.cpp
@@ -3928,11 +3928,13 @@ struct TSchemeShard::TTxInit : public TTransactionBase<TSchemeShard> {
Self->TabletCounters->Simple()[COUNTER_GRAPHSHARD_COUNT].Add(1);
break;
default:
- Y_FAIL_S("dont know how to interpret tablet type"
+ LOG_WARN_S(ctx, NKikimrServices::FLAT_TX_SCHEMESHARD,
+ "dont know how to interpret tablet type"
<< ", type id: " << (ui32)si.second.TabletType
<< ", pathId: " << pathId
<< ", shardId: " << shardIdx
<< ", tabletId: " << tabletId);
+ break;
}
}