Skip to content

Commit

Permalink
Update src/main.rs
Browse files Browse the repository at this point in the history
OK, I trust you with this one (originally Martin's code)

Co-authored-by: Jan <[email protected]>
  • Loading branch information
enola-dkfz and Threated authored Dec 12, 2023
1 parent f2b0648 commit 177321e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ async fn process_tasks(
let tasks = beam::retrieve_tasks().await?;
for task in tasks {
let task_cloned = task.clone();
let claiming = tokio::task::spawn(async move { beam::claim_task(&task_cloned).await });
let claiming = tokio::task::spawn(beam::claim_task(&task_cloned));
let res = process_task(&task, obf_cache, report_cache).await;
let error_msg = match res {
Err(FocusError::DecodeError(_)) | Err(FocusError::ParsingError(_)) => {
Expand Down

0 comments on commit 177321e

Please sign in to comment.