Skip to content

Commit

Permalink
nits logs
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel committed Nov 15, 2024
1 parent 089826e commit 029462b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion backend/windmill-worker/src/python_executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1153,7 +1153,11 @@ pub async fn handle_python_reqs(

for (req, venv_p) in req_with_penv {
let mut logs1 = String::new();
logs1.push_str("\n\n--- UV PIP INSTALL ---\n");
if no_uv_install {
logs1.push_str("\n\n--- PIP INSTALL ---\n");
} else {
logs1.push_str("\n\n--- UV PIP INSTALL ---\n");
}
logs1.push_str(&format!("\n{req} is being installed for the first time.\n It will be cached for all ulterior uses."));
append_logs(&job_id, w_id, logs1, db).await;

Expand Down

0 comments on commit 029462b

Please sign in to comment.