[Zodb-checkins] SVN: ZODB/trunk/src/ZEO/zrpc/connection.py Upped the protocol number, since new server methods were added.

Jim Fulton jim at zope.com
Thu Nov 13 18:44:57 EST 2008


Log message for revision 92918:
  Upped the protocol number, since new server methods were added.
  

Changed:
  U   ZODB/trunk/src/ZEO/zrpc/connection.py

-=-
Modified: ZODB/trunk/src/ZEO/zrpc/connection.py
===================================================================
--- ZODB/trunk/src/ZEO/zrpc/connection.py	2008-11-13 23:44:55 UTC (rev 92917)
+++ ZODB/trunk/src/ZEO/zrpc/connection.py	2008-11-13 23:44:57 UTC (rev 92918)
@@ -337,12 +337,16 @@
     #             receiveBlobStart
     #             receiveBlobChunk
     #             receiveBlobStop
+    #
+    # Z309 -- named after the ZODB release 3.9
+    #         New server methods:
+    #             restorea, iterator_start, iterator_next,
+    #             iterator_record_start, iterator_record_next,
+    #             iterator_gc
     
-    # XXX add blob methods
-
     # 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.



More information about the Zodb-checkins mailing list