Commit 0ddb237d authored by Tim Peters's avatar Tim Peters

Change default port # from 9999 to 8100, to match zope.conf.

parent ea79e2bb
......@@ -121,6 +121,12 @@ The BTrees interface file neglected to document the optional
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
-------
......
......@@ -159,7 +159,7 @@ class ZEOInstanceBuilder:
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)
......
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