[Zodb-checkins] SVN: ZODB/branches/3.3/ Change default port # from
9999 to 8100, to match zope.conf.
Tim Peters
tim.one at comcast.net
Mon Mar 28 15:45:15 EST 2005
Log message for revision 29707:
Change default port # from 9999 to 8100, to match zope.conf.
Changed:
U ZODB/branches/3.3/NEWS.txt
U ZODB/branches/3.3/src/ZEO/mkzeoinst.py
-=-
Modified: ZODB/branches/3.3/NEWS.txt
===================================================================
--- ZODB/branches/3.3/NEWS.txt 2005-03-28 20:34:46 UTC (rev 29706)
+++ ZODB/branches/3.3/NEWS.txt 2005-03-28 20:45:15 UTC (rev 29707)
@@ -121,6 +121,12 @@
and ``items()`` methods. Appropriate changes were merged in from the
ZODB4 BTrees interface file.
+Tools
+-----
+
+- ``mkzeoinst.py``'s default port number changed from to 9999 to 8100, to
+ match the example in Zope's ``zope.conf``.
+
fsIndex
-------
Modified: ZODB/branches/3.3/src/ZEO/mkzeoinst.py
===================================================================
--- ZODB/branches/3.3/src/ZEO/mkzeoinst.py 2005-03-28 20:34:46 UTC (rev 29706)
+++ ZODB/branches/3.3/src/ZEO/mkzeoinst.py 2005-03-28 20:45:15 UTC (rev 29707)
@@ -159,7 +159,7 @@
if args[1:]:
port = int(args[1])
else:
- port = 9999
+ port = 8100 # match example in zope.conf
params = self.get_params(zodb3_home, instance_home, port)
self.create(instance_home, params)
More information about the Zodb-checkins
mailing list