[New-bugs-announce] [issue30434] multiprocessing AuthenticationError "digest sent was rejected"

Soon Jeffrey report at bugs.python.org
Mon May 22 16:24:15 EDT 2017


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 <report at bugs.python.org>
<http://bugs.python.org/issue30434>
_______________________________________


More information about the New-bugs-announce mailing list