[Zodb-checkins] CVS: ZODB3/ZEO - stats.py:1.21.20.3

Jeremy Hylton cvs-admin at zope.org
Wed Nov 19 15:30:06 EST 2003


Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv12724

Modified Files:
      Tag: ZODB3-mvcc-2-branch
	stats.py 
Log Message:
Fix of list "hit" codes in dumpbyinterval().


=== ZODB3/ZEO/stats.py 1.21.20.2 => 1.21.20.3 ===
--- ZODB3/ZEO/stats.py:1.21.20.2	Wed Nov 19 15:27:25 2003
+++ ZODB3/ZEO/stats.py	Wed Nov 19 15:30:03 2003
@@ -314,7 +314,7 @@
         if code & 0x70 == 0x20:
             n = byinterval[code]
             loads += n
-            if code in (0x2A, 0x2C, 0x2E):
+            if code in (0x22, 0x26):
                 hits += n
     if not loads:
         return




More information about the Zodb-checkins mailing list