[Zodb-checkins] SVN: ZODB/branches/jim-dev/src/ZEO/zrpc/connection.py Quick hack while investigating protocol issues.
Jim Fulton
jim at zope.com
Mon Nov 24 09:45:23 EST 2008
Log message for revision 93311:
Quick hack while investigating protocol issues.
Changed:
U ZODB/branches/jim-dev/src/ZEO/zrpc/connection.py
-=-
Modified: ZODB/branches/jim-dev/src/ZEO/zrpc/connection.py
===================================================================
--- ZODB/branches/jim-dev/src/ZEO/zrpc/connection.py 2008-11-24 14:43:52 UTC (rev 93310)
+++ ZODB/branches/jim-dev/src/ZEO/zrpc/connection.py 2008-11-24 14:45:23 UTC (rev 93311)
@@ -346,15 +346,15 @@
# Protocol variables:
# Our preferred protocol.
- current_protocol = "Z308"
+ current_protocol = "Z309"
# If we're a client, an exhaustive list of the server protocols we
# can accept.
- servers_we_can_talk_to = [current_protocol]
+ servers_we_can_talk_to = ["Z308", current_protocol]
# If we're a server, an exhaustive list of the client protocols we
# can accept.
- clients_we_can_talk_to = ["Z200", "Z201", "Z303", current_protocol]
+ clients_we_can_talk_to = ["Z200", "Z201", "Z303", "Z308", current_protocol]
# This is pretty excruciating. Details:
#
More information about the Zodb-checkins
mailing list