Skip to content

Commit a3dc882

Browse files
authored
fix(compaction-test): add --advertise-addr to meta's opts (risingwavelabs#8611)
1 parent 99501d1 commit a3dc882

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/tests/compaction_test/src/compaction_test_runner.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ pub async fn start_meta_node(listen_addr: String, config_path: String) {
129129
"meta-node",
130130
"--listen-addr",
131131
&listen_addr,
132+
"--advertise-addr",
133+
&listen_addr,
132134
"--backend",
133135
"mem",
134136
"--checkpoint-frequency",
@@ -159,7 +161,7 @@ async fn start_compactor_node(
159161
) {
160162
let opts = risingwave_compactor::CompactorOpts::parse_from([
161163
"compactor-node",
162-
"--host",
164+
"--listen-addr",
163165
"127.0.0.1:5550",
164166
"--advertise-addr",
165167
&advertise_addr,

0 commit comments

Comments
 (0)