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
1ae8cbdd
Commit
1ae8cbdd
authored
Dec 22, 2009
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed close to use the asyncore thread to try to avoid a race and
breaking the client loop.
parent
b8cf2814
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
2 deletions
+45
-2
src/ZEO/ClientStorage.py
src/ZEO/ClientStorage.py
+14
-2
src/ZEO/tests/testZEO.py
src/ZEO/tests/testZEO.py
+31
-0
No files found.
src/ZEO/ClientStorage.py
View file @
1ae8cbdd
...
...
@@ -442,11 +442,20 @@ class ClientStorage(object):
logger
.
info
(
"%s Waiting for cache verification to finish"
,
self
.
__name__
)
def
close
(
self
):
"
""Storage API: finalize the storage, releasing external resources.""
"
def
close
(
self
,
kill
=
False
):
"
Storage API: finalize the storage, releasing external resources.
"
if
self
.
_rpc_mgr
is
not
None
:
self
.
_rpc_mgr
.
close
()
self
.
_rpc_mgr
=
None
if
(
self
.
_connection
is
not
None
)
and
not
kill
:
event
=
threading
.
Event
()
self
.
_connection
.
trigger
.
pull_trigger
(
lambda
:
self
.
_close
(
event
))
event
.
wait
(
9
)
else
:
self
.
_close
()
def
_close
(
self
,
event
=
None
):
if
self
.
_connection
is
not
None
:
self
.
_connection
.
register_object
(
None
)
# Don't call me!
self
.
_connection
.
close
()
...
...
@@ -462,6 +471,9 @@ class ClientStorage(object):
if
self
.
_check_blob_size_thread
is
not
None
:
self
.
_check_blob_size_thread
.
join
()
if
event
is
not
None
:
event
.
set
()
_check_blob_size_thread
=
None
def
_check_blob_size
(
self
,
bytes
=
None
):
if
self
.
_blob_cache_size
is
None
:
...
...
src/ZEO/tests/testZEO.py
View file @
1ae8cbdd
...
...
@@ -951,6 +951,8 @@ def tpc_finish_error():
... pass
... def close(self):
... print 'connection closed'
... trigger = property(lambda self: self)
... pull_trigger = lambda self, func: func()
>>> class ConnectionManager:
... def __init__(self, addr, client, tmin, tmax):
...
...
@@ -1228,6 +1230,35 @@ def runzeo_without_configfile():
testing exit immediately
"""
def
close_client_storage_w_invalidations
():
r"""
Invalidations could cause errors when closing client storages,
>>> addr, _ = start_server()
>>> writing = threading.Event()
>>> def mad_write_thread():
... global writing
... conn = ZEO.connection(addr)
... writing.set()
... while writing.isSet():
... conn.root.x = 1
... transaction.commit()
... conn.close()
>>> thread = threading.Thread(target=mad_write_thread)
>>> thread.setDaemon(True)
>>> thread.start()
>>> writing.wait()
>>> time.sleep(.01)
>>> for i in range(10):
... conn = ZEO.connection(addr)
... _ = conn._storage.load('\0'*8)
... conn.close()
>>> writing.clear()
>>> thread.join(1)
"""
slow_test_classes
=
[
BlobAdaptedFileStorageTests
,
BlobWritableCacheTests
,
DemoStorageTests
,
FileStorageTests
,
MappingStorageTests
,
...
...
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