Skip to content

Commit

Permalink
Replacing multiprocess library with multiprocessing
Browse files Browse the repository at this point in the history
On IOS multiprocess library behaves strangely:
- There is no logs from spawned processes during analysis

Replacing it with multiprocessing solves the issue.
  • Loading branch information
dkrupp committed Nov 12, 2023
1 parent e9105b1 commit 43f5125
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion analyzer/codechecker_analyzer/analysis_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


import glob
import multiprocessing
import multiprocess as multiprocessing
import os
import shlex
import shutil
Expand Down
2 changes: 1 addition & 1 deletion analyzer/codechecker_analyzer/pre_analysis_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Run pre analysis, collect statistics or CTU data.
"""

import multiprocessing
import multiprocess as multiprocessing
import os
import shlex
import shutil
Expand Down

0 comments on commit 43f5125

Please sign in to comment.