Skip to content

Commit

Permalink
don't limit size of exception queue
Browse files Browse the repository at this point in the history
  • Loading branch information
fgregg committed Jan 20, 2022
1 parent 30df5aa commit 3cec4ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dedupe/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def scoreDuplicates(record_pairs: RecordPairs,
"the data you trained on?")

record_pairs_queue: _Queue = Queue(2)
exception_queue: _Queue = Queue(1)
exception_queue: _Queue = Queue()
scored_pairs_file, score_file_path = tempfile.mkstemp()
os.close(scored_pairs_file)

Expand Down

0 comments on commit 3cec4ff

Please sign in to comment.