New submission from Soon Jeffrey: This is codes I run:
class TopicManager(SyncManager): pass Server side: m = TopicManager(address=('', 50000), authkey='12345') s = m.get_server() s.serve_forever() client side: m = TopicManager(address=('eng-g9-018', 50000), authkey='12345') m.connect() When I use Python2.7.5, m.connect() can connect to server. But when I use Python2.7.13, m.connect() throws out AuthenticationError "digest sent was rejected" Searched and multiprocessing.current_process().authkey = "12345" doesn't help. ---------- messages: 294178 nosy: Soon Jeffrey priority: normal severity: normal status: open title: multiprocessing AuthenticationError "digest sent was rejected" type: behavior versions: Python 2.7 _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue30434> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com