We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41323a9 commit 3789023Copy full SHA for 3789023
src/risedevtool/src/task/connector_service.rs
@@ -46,8 +46,8 @@ impl Task for ConnectorNodeService {
46
if !path.exists() {
47
return Err(anyhow!("RisingWave connector binary not found in {:?}\nDid you enable risingwave connector feature in `./risedev configure`?", path));
48
}
49
- let mut cmd = Command::new("sh");
50
- cmd.arg(path).arg("-p").arg(self.config.port.to_string());
+ let mut cmd = Command::new(path);
+ cmd.arg("-p").arg(self.config.port.to_string());
51
ctx.run_command(ctx.tmux_run(cmd)?)?;
52
ctx.pb.set_message("started");
53
0 commit comments