Commit 66fcf094 authored by Barry Warsaw's avatar Barry Warsaw

Oops, comment out some non-standard stuff (selecting a replay target

storage needs to be more configurable).
parent 83d6a254
...@@ -33,9 +33,9 @@ import operator ...@@ -33,9 +33,9 @@ import operator
from time import time as now from time import time as now
from ZODB.FileStorage import FileStorage from ZODB.FileStorage import FileStorage
from bsddb3Storage.Full import Full #from bsddb3Storage.Full import Full
from Standby.primary import PrimaryStorage #from Standby.primary import PrimaryStorage
from Standby.config import RS_PORT #from Standby.config import RS_PORT
from ZODB.Transaction import Transaction from ZODB.Transaction import Transaction
from ZODB.utils import p64 from ZODB.utils import p64
...@@ -282,7 +282,7 @@ def main(): ...@@ -282,7 +282,7 @@ def main():
if replay: if replay:
storage = FileStorage(storagefile) storage = FileStorage(storagefile)
#storage = Full(storagefile) #storage = Full(storagefile)
storage = PrimaryStorage('yyz', storage, RS_PORT) #storage = PrimaryStorage('yyz', storage, RS_PORT)
t0 = now() t0 = now()
p = ZEOParser(maxtxns, report, storage) p = ZEOParser(maxtxns, report, storage)
i = 0 i = 0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment