feat: make logging to stdout configurable (#3003)

* feat: make logging to stdout configurable

* fix sqlness

* fix: resolve PR comments
This commit is contained in:
LFC
2023-12-26 15:37:50 +08:00
committed by GitHub
parent 99565a3676
commit 196c06db14
8 changed files with 38 additions and 15 deletions

View File

@@ -190,7 +190,7 @@ impl Env {
"start".to_string(),
"-c".to_string(),
self.generate_config_file(subcommand, db_ctx),
"--http-addr=127.0.0.1:5001".to_string(),
"--http-addr=127.0.0.1:5002".to_string(),
];
(args, SERVER_ADDR.to_string())
}
@@ -213,7 +213,7 @@ impl Env {
"true".to_string(),
"--enable-region-failover".to_string(),
"false".to_string(),
"--http-addr=127.0.0.1:5001".to_string(),
"--http-addr=127.0.0.1:5002".to_string(),
];
(args, METASRV_ADDR.to_string())
}