Commit 2a8324f2 authored by Barry Warsaw's avatar Barry Warsaw

Use 'localhost' instead of '' for the host part for Windows happiness.

parent 578dc8e2
......@@ -129,7 +129,7 @@ class Suicide(threading.Thread):
self._adminaddr = addr
def run(self):
# If this process doesn't exit in 60 seconds, commit suicide
# If this process doesn't exit in 100 seconds, commit suicide
for i in range(20):
time.sleep(5)
from ZEO.tests.forker import shutdown_zeo_server
......@@ -173,8 +173,8 @@ def main():
# The rest of the args are hostname, portnum
zeo_port = int(args[0])
test_port = zeo_port + 1
test_addr = ('', test_port)
addr = ('', zeo_port)
test_addr = ('localhost', test_port)
addr = ('localhost', zeo_port)
log(label, 'creating the storage server')
serv = ZEO.StorageServer.StorageServer(
addr, {'1': storage}, ro_svr,
......
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