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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZEO
Commits
5a0ec5cc
Commit
5a0ec5cc
authored
Sep 09, 2010
by
Patrick Strawderman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug fix: the ConnectionManager could hang if its ConnectThread died
without setting the connection.
parent
da1820a5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
5 deletions
+32
-5
src/ZEO/tests/testZEO.py
src/ZEO/tests/testZEO.py
+27
-1
src/ZEO/zrpc/client.py
src/ZEO/zrpc/client.py
+5
-4
No files found.
src/ZEO/tests/testZEO.py
View file @
5a0ec5cc
...
...
@@ -1519,6 +1519,32 @@ def quick_close_doesnt_kill_server():
>>> db.close()
"""
def
sync_connect_doesnt_hang
():
r"""
>>> import threading
>>> import ZEO.zrpc.client
>>> ConnectThread = ZEO.zrpc.client.ConnectThread
>>> ZEO.zrpc.client.ConnectThread = lambda *a, **kw: threading.Thread()
>>> class CM(ZEO.zrpc.client.ConnectionManager):
... sync_wait = 1
... _start_asyncore_loop = lambda self: None
>>> cm = CM('', object())
Calling connect results in an exception being raised, instead of hanging
indefinitely when the thread dies without setting up the connection.
>>> cm.connect(sync=1)
Traceback (most recent call last):
...
AssertionError
>>> cm.thread.isAlive()
False
>>> ZEO.zrpc.client.ConnectThread = ConnectThread
"""
slow_test_classes
=
[
BlobAdaptedFileStorageTests
,
BlobWritableCacheTests
,
...
...
@@ -1535,7 +1561,7 @@ class ServerManagingClientStorage(ClientStorage):
class
StorageServerStubClass
(
ZEO
.
ServerStub
.
StorageServer
):
# Wait for abort for the benefit of blob_transacton.txt
# Wait for abort for the benefit of blob_transact
i
on.txt
def
tpc_abort
(
self
,
id
):
self
.
rpc
.
call
(
'tpc_abort'
,
id
)
...
...
src/ZEO/zrpc/client.py
View file @
5a0ec5cc
...
...
@@ -131,6 +131,8 @@ def client_loop(map):
class
ConnectionManager
(
object
):
"""Keeps a connection up over time"""
sync_wait
=
30
def
__init__
(
self
,
addrs
,
client
,
tmin
=
1
,
tmax
=
180
):
self
.
client
=
client
self
.
_start_asyncore_loop
()
...
...
@@ -273,14 +275,13 @@ class ConnectionManager(object):
t
.
setDaemon
(
1
)
t
.
start
()
if
sync
:
while
self
.
connection
is
None
:
self
.
cond
.
wait
(
30
)
while
self
.
connection
is
None
and
t
.
isAlive
()
:
self
.
cond
.
wait
(
self
.
sync_wait
)
if
self
.
connection
is
None
:
log
(
"CM.connect(sync=1): still waiting..."
)
assert
self
.
connection
is
not
None
finally
:
self
.
cond
.
release
()
if
sync
:
assert
self
.
connection
is
not
None
def
connect_done
(
self
,
conn
,
preferred
):
# Called by ConnectWrapper.notify_client() after notifying the client
...
...
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