diff options
author | azevaykin <145343289+azevaykin@users.noreply.github.com> | 2025-02-03 13:45:09 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-03 13:45:09 +0300 |
commit | 60e399b3f28ea2f73d8bceff8aeb2fb6d3d17497 (patch) | |
tree | a016a9ad937164b9ff4863236b442ea96d94caf4 | |
parent | c941aa27026013239e83c32a7deecb7e2341ab1b (diff) | |
download | ydb-60e399b3f28ea2f73d8bceff8aeb2fb6d3d17497.tar.gz |
Remove unsupported read replicas settings from an error message (#13790)
-rw-r--r-- | ydb/core/kqp/provider/yql_kikimr_gateway.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/kqp/provider/yql_kikimr_gateway.cpp b/ydb/core/kqp/provider/yql_kikimr_gateway.cpp index 1926cf600a9..e75a480a230 100644 --- a/ydb/core/kqp/provider/yql_kikimr_gateway.cpp +++ b/ydb/core/kqp/provider/yql_kikimr_gateway.cpp @@ -300,7 +300,7 @@ bool ConvertReadReplicasSettingsToProto(const TString settings, Ydb::Table::Read << "'. It should be one of: " << "1) 'PER_AZ:<read_replicas_count>' to set equal read replicas count for every AZ; " << "2) 'ANY_AZ:<read_replicas_count>' to set total read replicas count between all AZs; " - << "3) '<az1_name>:<read_replicas_count1>, <az2_name>:<read_replicas_count2>, ...' " +// << "3) '<az1_name>:<read_replicas_count1>, <az2_name>:<read_replicas_count2>, ...' " << "to specify read replicas count for each AZ in cluster."; return false; } |