Change multiprocessing from using fork to spawn
This eliminates the use of os.fork that could potentially cause a race with threads and definitely genrates a DeprecatinWarning in Python 3.12. How are we using threads? That's a mystery! Maybe multiprocessing.Queue?
Please register or sign in to comment