[Zodb-checkins] CVS: ZODB3/Tools - zeoreplay.py:1.3

Barry Warsaw barry@wooz.org
Wed, 18 Dec 2002 17:15:34 -0500


Update of /cvs-repository/ZODB3/Tools
In directory cvs.zope.org:/tmp/cvs-serv15273/Tools

Modified Files:
	zeoreplay.py 
Log Message:
For alignment with ZODB4, renaming these storages for ZODB3 3.2.

bsddb3Storage becomes BDBStorage
Full becomes BDBFullStorage
Minimal becomes BDBMinimalStorage

Removing MinimalReplicated.py, Packless.py, and base.py


=== ZODB3/Tools/zeoreplay.py 1.2 => 1.3 ===
--- ZODB3/Tools/zeoreplay.py:1.2	Thu May  9 11:35:56 2002
+++ ZODB3/Tools/zeoreplay.py	Wed Dec 18 17:15:03 2002
@@ -33,7 +33,7 @@
 from time import time as now
 
 from ZODB.FileStorage import FileStorage
-#from bsddb3Storage.Full import Full
+#from BDBStorage.BDBFullStorage import BDBFullStorage
 #from Standby.primary import PrimaryStorage
 #from Standby.config import RS_PORT
 from ZODB.Transaction import Transaction
@@ -281,7 +281,7 @@
 
     if replay:
         storage = FileStorage(storagefile)
-	#storage = Full(storagefile)
+	#storage = BDBFullStorage(storagefile)
         #storage = PrimaryStorage('yyz', storage, RS_PORT)
     t0 = now()
     p = ZEOParser(maxtxns, report, storage)