remove dbg! leftovers (#6842)

Signed-off-by: pyranota <pyra@duck.com>
This commit is contained in:
Pyra
2025-10-16 19:29:57 +02:00
committed by GitHub
parent 0c4e14e81c
commit 952a15a877

View File

@@ -956,7 +956,6 @@ pub async fn run_worker(
);
}
dbg!("start");
let start_time = Instant::now();
let worker_dir = format!("{TMP_DIR}/{worker_name}");
@@ -997,8 +996,6 @@ pub async fn run_worker(
});
}
dbg!("python stuff is done");
if let Some(ref netrc) = *NETRC {
tracing::info!(worker = %worker_name, hostname = %hostname, "Writing netrc at {}/.netrc", HOME_ENV.as_str());
write_file(&HOME_ENV, ".netrc", netrc).expect("could not write netrc");
@@ -1006,8 +1003,6 @@ pub async fn run_worker(
create_directory_async(&worker_dir).await;
dbg!("worker dir created");
if !*DISABLE_NSJAIL {
let _ = write_file(
&worker_dir,
@@ -1390,7 +1385,6 @@ pub async fn run_worker(
let mut killpill_rx2 = killpill_rx.resubscribe();
dbg!("starting loop");
loop {
let last_processing_duration_secs = last_processing_duration.load(Ordering::SeqCst);
if last_processing_duration_secs > 5 {