Skip to content

Commit

Permalink
fix(processing_engine): Don't set current_dir to plugin_dir when crea…
Browse files Browse the repository at this point in the history
…ting virtual environment.
  • Loading branch information
jacksonrnewhouse committed Jan 29, 2025
1 parent 8840d99 commit 8a96310
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions influxdb3_processing_engine/src/environment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ impl PythonEnvironmentManager for UVManager {
Command::new("uv")
.arg("venv")
.arg(venv_path)
.current_dir(plugin_dir)
.output()?;
}

Expand Down Expand Up @@ -106,7 +105,6 @@ impl PythonEnvironmentManager for PipManager {
.arg("-m")
.arg("venv")
.arg(venv_path)
.current_dir(plugin_dir)
.output()?;
}

Expand Down

0 comments on commit 8a96310

Please sign in to comment.