Skip to content

Commit

Permalink
fix wrong block value
Browse files Browse the repository at this point in the history
  • Loading branch information
horpto committed Jan 29, 2019
1 parent 8fd72d2 commit 124ab37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gensim/models/ldamulticore.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def process_result_queue(force=False):
# put the chunk into the workers' input job queue
while True:
try:
job_queue.put((chunk_no, chunk, self.state), block=True)
job_queue.put((chunk_no, chunk, self.state), block=False)
queue_size[0] += 1
logger.info(
"PROGRESS: pass %i, dispatched chunk #%i = documents up to #%i/%i, "
Expand Down

0 comments on commit 124ab37

Please sign in to comment.