Skip to content

Commit

Permalink
try simplest arg
Browse files Browse the repository at this point in the history
  • Loading branch information
sorhawell committed Jul 19, 2023
1 parent 8625c92 commit 76e89b7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/rust/src/rbackground.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,11 @@ impl RBackgroundHandler {
let (server, server_name) = ipc::IpcOneShotServer::new()
.when("trying to create a one-shot channel to setup inter-process communication")?;

let e_arg = format!(
"polars:::handle_background_request('{}') |> invisible()",
server_name.clone()
);
// let e_arg = format!(
// "polars:::handle_background_request('{}') |> invisible()",
// server_name.clone()
// );
let e_arg = "42".to_string();
let child = Command::new("R")
.arg("--vanilla")
.arg("-q")
Expand Down

0 comments on commit 76e89b7

Please sign in to comment.