This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author giampaolo.rodola
Recipients davin, giampaolo.rodola, pitrou
Date 2019-02-06.17:36:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1549474580.7.0.974775956703.issue35919@roundup.psfhosted.org>
In-reply-to
Content
import multiprocessing
import multiprocessing.managers

def f(n):
    return n * n

def worker(pool):
    with pool:
        pool.apply_async(f, (10, ))

manager = multiprocessing.managers.SyncManager()
manager.start()
pool = manager.Pool(processes=4)
proc = multiprocessing.Process(target=worker, args=(pool, ))
proc.start()
proc.join()

This is related to BPO-35917 and it fails with:

Process Process-2:
Traceback (most recent call last):
  File "/home/giampaolo/cpython/Lib/multiprocessing/process.py", line 302, in _bootstrap
    self.run()
  File "/home/giampaolo/cpython/Lib/multiprocessing/process.py", line 99, in run
    self._target(*self._args, **self._kwargs)
  File "foo.py", line 54, in worker
    pool.apply_async(f, (10, ))
  File "<string>", line 2, in apply_async
  File "/home/giampaolo/cpython/Lib/multiprocessing/managers.py", line 802, in _callmethod
    proxytype = self._manager._registry[token.typeid][-1]
AttributeError: 'NoneType' object has no attribute '_registry'
History
Date User Action Args
2019-02-06 17:36:22giampaolo.rodolasetrecipients: + giampaolo.rodola, pitrou, davin
2019-02-06 17:36:20giampaolo.rodolasetmessageid: <1549474580.7.0.974775956703.issue35919@roundup.psfhosted.org>
2019-02-06 17:36:20giampaolo.rodolalinkissue35919 messages
2019-02-06 17:36:20giampaolo.rodolacreate