Skip to content

Commit

Permalink
Merge branch 'deploy/omop' of github.com:samply/focus into feature/ex…
Browse files Browse the repository at this point in the history
…porter
  • Loading branch information
enola-dkfz committed Dec 12, 2023
2 parents 36da302 + 7fba00f commit c7d80e6
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 @@ -206,7 +206,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(beam::claim_task(&task_cloned));
let claiming = tokio::task::spawn(async move { beam::claim_task(&task_cloned).await });
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 c7d80e6

Please sign in to comment.