Commit 8815646e authored by Jeremy Hylton's avatar Jeremy Hylton

Fix speed to use new forker api.

parent 744ed090
...@@ -159,8 +159,8 @@ def main(args): ...@@ -159,8 +159,8 @@ def main(args):
s = s.Storage s = s.Storage
server = None server = None
else: else:
fs = ZODB.FileStorage.FileStorage(fs_name, create=1) s, server, pid = forker.start_zeo("FileStorage",
s, server, pid = forker.start_zeo(fs, domain=domain) (fs_name, 1), domain=domain)
data=open(data).read() data=open(data).read()
db=ZODB.DB(s, db=ZODB.DB(s,
......
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