[Zodb-checkins] SVN: ZODB/branches/3.8/src/ZEO/cache.py Fixed a serialization bug that is wildly unlikely to have ever been

Jim Fulton jim at zope.com
Wed May 14 18:21:25 EDT 2008


Log message for revision 86763:
  Fixed a serialization bug that is wildly unlikely to have ever been
  effective. :)
  

Changed:
  U   ZODB/branches/3.8/src/ZEO/cache.py

-=-
Modified: ZODB/branches/3.8/src/ZEO/cache.py
===================================================================
--- ZODB/branches/3.8/src/ZEO/cache.py	2008-05-14 21:42:28 UTC (rev 86762)
+++ ZODB/branches/3.8/src/ZEO/cache.py	2008-05-14 22:21:24 UTC (rev 86763)
@@ -542,7 +542,7 @@
         write('f'+pack(">I", nfreebytes))
 
         # Now write the rest of the allocation block header and object data.
-        write(pack(">8s8s8shi",
+        write(pack(">8s8s8shI",
                    oid, start_tid, end_tid or z64, len(version), len(data),
                    ))
         if version:



More information about the Zodb-checkins mailing list