From f0a3eea742f0973bc61c033f980f7a250658d769 Mon Sep 17 00:00:00 2001 From: Jakob Cornell Date: Sun, 17 Apr 2022 17:23:38 -0500 Subject: [PATCH] Fix v1 worklist query error --- disk_jumble/src/disk_jumble/verify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disk_jumble/src/disk_jumble/verify.py b/disk_jumble/src/disk_jumble/verify.py index e9faef5..45a43d5 100644 --- a/disk_jumble/src/disk_jumble/verify.py +++ b/disk_jumble/src/disk_jumble/verify.py @@ -83,7 +83,7 @@ def _get_v1_worklist(conn, disk_id: int, block_ranges: List[NumericRange]) -> Li entity_id, info from ( diskjumble.slab - left join bittorrent.torrent_info on digest(info, 'sha1') = entity_id + join bittorrent.torrent_info on digest(info, 'sha1') = entity_id ) where disk_id = %s and disk_blocks && any (%s::int8range[]) """, -- 2.30.2