feat: use the latest command line options for sqlness runner (#2371)

feat: use the latest command line options

Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
This commit is contained in:
Ruihang Xia
2023-09-12 22:38:43 -05:00
committed by GitHub
parent 9c76d2cf54
commit 60bdf9685f
2 changed files with 1 additions and 5 deletions

View File

@@ -181,8 +181,6 @@ impl Env {
"--use-memory-store".to_string(),
"true".to_string(),
"--http-addr=127.0.0.1:5001".to_string(),
"--disable-region-failover".to_string(),
"true".to_string(),
];
(args, METASRV_ADDR.to_string())
}
@@ -225,7 +223,6 @@ impl Env {
let data_home = self
.data_home
.join(format!("greptimedb_datanode_{}_{id}", db_ctx.time));
let wal_dir = data_home.join("wal").display().to_string();
let subcommand = "datanode";
let mut args = vec![
@@ -236,7 +233,6 @@ impl Env {
args.push(format!("--rpc-addr=127.0.0.1:410{id}"));
args.push(format!("--http-addr=127.0.0.1:430{id}"));
args.push(format!("--data-home={}", data_home.display()));
args.push(format!("--wal-dir={wal_dir}"));
args.push(format!("--node-id={id}"));
args.push("--metasrv-addr=127.0.0.1:3002".to_string());
(args, format!("127.0.0.1:410{id}"))

View File

@@ -34,7 +34,7 @@ async fn main() {
let config = ConfigBuilder::default()
.case_dir(util::get_case_dir())
.fail_fast(true)
.fail_fast(false)
.test_filter(test_filter)
.follow_links(true)
.build()