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 Soon Jeffrey
Recipients Soon Jeffrey
Date 2017-05-22.20:24:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1495484655.04.0.0387717474918.issue30434@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2017-05-22 20:24:15Soon Jeffreysetrecipients: + Soon Jeffrey
2017-05-22 20:24:15Soon Jeffreysetmessageid: <1495484655.04.0.0387717474918.issue30434@psf.upfronthosting.co.za>
2017-05-22 20:24:15Soon Jeffreylinkissue30434 messages
2017-05-22 20:24:14Soon Jeffreycreate