Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZODB
Commits
f22578d0
Commit
f22578d0
authored
Mar 28, 2005
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change default port # from 9999 to 8100, to match zope.conf.
parent
ad9732dc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
branches/3.3/NEWS.txt
branches/3.3/NEWS.txt
+6
-0
branches/3.3/src/ZEO/mkzeoinst.py
branches/3.3/src/ZEO/mkzeoinst.py
+1
-1
No files found.
branches/3.3/NEWS.txt
View file @
f22578d0
...
...
@@ -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
-------
...
...
branches/3.3/src/ZEO/mkzeoinst.py
View file @
f22578d0
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment