mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 00:02:03 +00:00
nit
This commit is contained in:
@@ -1965,11 +1965,12 @@ pub async fn handle_python_reqs(
|
||||
(stderr_future.await, stdout_future.await, Box::into_pin(uv_install_proccess.wait()).await)
|
||||
} => match exitstatus {
|
||||
Ok(status) => if !status.success() {
|
||||
let code = status.code();
|
||||
tracing::warn!(
|
||||
workspace_id = %w_id,
|
||||
"uv install {} did not succeed, exit status: {:?}",
|
||||
&req,
|
||||
status.code()
|
||||
code
|
||||
);
|
||||
|
||||
append_logs(
|
||||
@@ -1977,7 +1978,8 @@ pub async fn handle_python_reqs(
|
||||
w_id,
|
||||
format!(
|
||||
"\nError while installing {}: \nStderr:\n{stderr_buf}\nStdout:\n{stdout_buf}\nExit status: {:?}",
|
||||
&req
|
||||
&req,
|
||||
code
|
||||
),
|
||||
&conn,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user