File tree 1 file changed +3
-3
lines changed
ydb/public/lib/ydb_cli/commands 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ int TCommandConfigFetch::Run(TConfig& config) {
129
129
}
130
130
131
131
if (!OutDir) {
132
- Cout << WrapYaml ( cfg) ;
132
+ Cout << cfg << Endl ;
133
133
} else {
134
134
TFsPath dir (OutDir);
135
135
dir.MkDirs ();
@@ -164,14 +164,14 @@ int TCommandConfigFetch::Run(TConfig& config) {
164
164
if (!storageConfig.empty () || DedicatedStorageSection) {
165
165
Cerr << " cluster config: " << Endl;
166
166
}
167
- Cout << WrapYaml ( TString ( clusterConfig)) ;
167
+ Cout << clusterConfig << Endl ;
168
168
}
169
169
170
170
if (!storageConfig.empty ()) {
171
171
if (!clusterConfig.empty () || DedicatedClusterSection) {
172
172
Cerr << " storage config:" << Endl;
173
173
}
174
- Cout << WrapYaml ( TString ( storageConfig)) ;
174
+ Cout << storageConfig << Endl ;
175
175
}
176
176
177
177
if (clusterConfig.empty () && storageConfig.empty ()) {
You can’t perform that action at this time.
0 commit comments