Skip to content

Commit bf4dde9

Browse files
committed
Fix print and update CHANGELOG.md
1 parent 899703e commit bf4dde9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

ydb/apps/ydb/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
* Add `ydb admin node config init` command to initialize directory with node config files.
2+
* Add `ydb admin cluster config generate` command to generate dynamic config from static config on cluster.
13
* Fixed memory leak in tpcds generator.
24
* Include external data sources and external tables in local backups (`ydb tools dump` and `ydb tools restore`). Both scheme objects are backed up as YQL creation queries saved in the `create_external_data_source.sql` and `create_external_table.sql` files respectively, which can be executed to recreate the original scheme objects.
35
* Fixed a bug where `ydb auth get-token` command tried to authenticate twice: while listing andpoints and while executing actual token request.

ydb/public/lib/ydb_cli/commands/ydb_node_config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ int TCommandNodeConfigInit::Run(TConfig& config) {
9898
}
9999
Cerr << "Failed to save configs: "
100100
<< (clusterSaved ? "" : "main config ")
101-
<< (storageSaved ? "and " : "storage config")
101+
<< (storageSaved ? "" : "storage config")
102102
<< Endl;
103103
return EXIT_FAILURE;
104104
}

0 commit comments

Comments
 (0)