Commit ebfd84d4 authored by Barry Warsaw's avatar Barry Warsaw

pack2(): pack doesn't require a read-write connection.

parent 658cbac3
...@@ -62,7 +62,7 @@ def pack1(addr, storage, days, wait): ...@@ -62,7 +62,7 @@ def pack1(addr, storage, days, wait):
cs.close() cs.close()
def pack2(addr, storage, days): def pack2(addr, storage, days):
cs = ClientStorage(addr, storage=storage, wait=1) cs = ClientStorage(addr, storage=storage, wait=1, read_only=1)
cs.pack(wait=1, days=days) cs.pack(wait=1, days=days)
cs.close() cs.close()
......
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