Skip to content

Commit

Permalink
patch
Browse files Browse the repository at this point in the history
  • Loading branch information
0o-de-lally committed Nov 28, 2024
1 parent ee2b266 commit c7a2c31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ pub async fn is_batch_complete(
pub async fn are_all_completed(pool: &Graph, archive_id: &str) -> Result<bool> {
let cypher_string = format!(
r#"
MATCH (a:Queue {{archive_id: {} }})
MATCH (a:Queue {{archive_id: '{}' }})
RETURN CASE
WHEN COUNT(a) = 0 THEN false
ELSE ALL(a.completed IN COLLECT(a.completed))
Expand Down

0 comments on commit c7a2c31

Please sign in to comment.