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.

classification
Title: multiprocessing AuthenticationError when nesting with non-default authkey
Type: Stage:
Components: Library (Lib) Versions: Python 3.6
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: natedogith1, xtreak
Priority: normal Keywords:

Created on 2018-08-31 22:16 by natedogith1, last changed 2022-04-11 14:59 by admin.

Messages (1)
msg324447 - (view) Author: (natedogith1) Date: 2018-08-31 22:16
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]
History
Date User Action Args
2022-04-11 14:59:05adminsetgithub: 78740
2018-09-20 10:52:33xtreaksetnosy: + xtreak
2018-08-31 22:16:52natedogith1create