[Zodb-checkins] CVS: ZODB3/ZEO/tests - winserver.py:1.11.2.2

Jeremy Hylton jeremy at zope.com
Tue Apr 29 12:16:37 EDT 2003


Update of /cvs-repository/ZODB3/ZEO/tests
In directory cvs.zope.org:/tmp/cvs-serv16874

Modified Files:
      Tag: ZODB3-3_1-branch
	winserver.py 
Log Message:
Backport: Use "localhost" instead of "" for the host part for Windows.


=== ZODB3/ZEO/tests/winserver.py 1.11.2.1 => 1.11.2.2 ===
--- ZODB3/ZEO/tests/winserver.py:1.11.2.1	Mon Feb  3 14:07:19 2003
+++ ZODB3/ZEO/tests/winserver.py	Tue Apr 29 11:16:36 2003
@@ -70,8 +70,8 @@
     storage = klass(*args)
     zeo_port = int(port)
     test_port = zeo_port + 1
-    t = ZEOTestServer(('', test_port), storage)
-    addr = ('', zeo_port)
+    t = ZEOTestServer(("localhost", test_port), storage)
+    addr = ("localhost", zeo_port)
     serv = ZEO.StorageServer.StorageServer(addr, {'1': storage}, ro_svr,
                                    transaction_timeout=transaction_timeout)
     asyncore.loop()




More information about the Zodb-checkins mailing list