[issue34559] multiprocessing AuthenticationError when nesting with non-default authkey

natedogith1 report at bugs.python.org
Fri Aug 31 18:16:52 EDT 2018


New submission from natedogith1 <natedogith1 at gmail.com>:

If you nest shared objects on a manager that doesn't use the default authkey, you get an AuthenticationError.

import multiprocessing.managers
a = multiprocessing.managers.SyncManager(authkey=b'')
a.start()
b = a.list()
b.append(a.list())
_ = b[0]

----------
components: Library (Lib)
messages: 324447
nosy: natedogith1
priority: normal
severity: normal
status: open
title: multiprocessing AuthenticationError when nesting with non-default authkey
versions: Python 3.6

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue34559>
_______________________________________


More information about the Python-bugs-list mailing list