%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 188.40.95.74 / Your IP : 216.73.216.205 Web Server : Apache System : Linux cp01.striminghost.net 3.10.0-1160.119.1.el7.tuxcare.els13.x86_64 #1 SMP Fri Nov 22 06:29:45 UTC 2024 x86_64 User : vlasotin ( 1054) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/lib/python2.7/site-packages/leapp/utils/workarounds/ |
Upload File : |
import os import multiprocessing.util import multiprocessing _start_method_set = False def apply_workaround(): global _start_method_set # Set start method for multiprocessing to fork (3.4+) set_start_method = getattr(multiprocessing, 'set_start_method', None) if not _start_method_set and set_start_method: set_start_method('fork') _start_method_set = True # Implements: # https://github.com/python/cpython/commit/e8a57b98ec8f2b161d4ad68ecc1433c9e3caad57 # # Detection of fix: os imported to compare pids, before the fix os has not # been imported if getattr(multiprocessing.util, 'os', None): return class FixedFinalize(multiprocessing.util.Finalize): def __init__(self, *args, **kwargs): super(FixedFinalize, self).__init__(*args, **kwargs) self._pid = os.getpid() def __call__(self, *args, **kwargs): # pylint: disable=signature-differs if self._pid != os.getpid(): return None return super(FixedFinalize, self).__call__(*args, **kwargs) setattr(multiprocessing.util, 'Finalize', FixedFinalize)