Skip to content

Commit

Permalink
Set start method to fork
Browse files Browse the repository at this point in the history
  • Loading branch information
Hermann Romanek committed Jul 8, 2024
1 parent 7f71d13 commit df523e5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/sniffles/sniffles
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,8 @@ def Sniffles2_Main(processes: list[parallel.SnifflesWorker]):


if __name__ == "__main__":
import multiprocessing as mp
mp.set_start_method('fork')
processes = []

try:
Expand Down

1 comment on commit df523e5

@hermannromanek
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Attempt at #490

Please sign in to comment.