Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZEO
Commits
2a8324f2
Commit
2a8324f2
authored
Feb 28, 2003
by
Barry Warsaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use 'localhost' instead of '' for the host part for Windows happiness.
parent
578dc8e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/ZEO/tests/zeoserver.py
src/ZEO/tests/zeoserver.py
+3
-3
No files found.
src/ZEO/tests/zeoserver.py
View file @
2a8324f2
...
...
@@ -129,7 +129,7 @@ class Suicide(threading.Thread):
self
.
_adminaddr
=
addr
def
run
(
self
):
# If this process doesn't exit in
6
0 seconds, commit suicide
# If this process doesn't exit in
10
0 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
,
...
...
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