Skip to content

Commit

Permalink
Pooling fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ntoskernel committed Jun 13, 2023
1 parent 2ea0822 commit 8cba440
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deepsecrets/core/modes/iscan_mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ def run(self) -> List[Finding]:
partial(pool_wrapper, bundle, self._per_file_analyzer),
self.filepaths,
) # type: ignore

pool.close()
pool.join() # not calling because of suprusingly big delays
# pool.close()
# pool.join() # not calling because of suprusingly big delays

for file_findings in list(per_file_findings):
if not file_findings:
Expand Down

0 comments on commit 8cba440

Please sign in to comment.