Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
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
Zope
Commits
a78c15f8
Commit
a78c15f8
authored
Feb 10, 2015
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prevent leaked connections when broken 'EndRequestEvent' subscribers raise.
Fixes #16 on the master branch.
parent
3710b7fe
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
4 deletions
+25
-4
CHANGES.rst
CHANGES.rst
+3
-0
src/ZPublisher/BaseRequest.py
src/ZPublisher/BaseRequest.py
+6
-4
src/ZPublisher/tests/testBaseRequest.py
src/ZPublisher/tests/testBaseRequest.py
+16
-0
No files found.
CHANGES.rst
View file @
a78c15f8
...
...
@@ -11,6 +11,9 @@ http://docs.zope.org/zope2/
Bugs Fixed
++++++++++
- Issue #16: prevent leaked connections when broken ``EndRequestEvent``
subscribers raise exceptions.
- Ensure that the ``WSGIPublisher`` begins and ends an *interaction*
at the request/response barrier. This is required for instance for
the ``checkPermission`` call to function without an explicit
...
...
src/ZPublisher/BaseRequest.py
View file @
a78c15f8
...
...
@@ -215,10 +215,12 @@ class BaseRequest:
self
.
_held
=
None
def
close
(
self
):
notify
(
EndRequestEvent
(
None
,
self
))
# subscribers might need the zodb, so `clear` must come afterwards
# (since `self._held=None` might close the connection, see above)
self
.
clear
()
try
:
notify
(
EndRequestEvent
(
None
,
self
))
finally
:
# subscribers might need the zodb, so `clear` must come afterwards
# (since `self._held=None` might close the connection, see above)
self
.
clear
()
def
processInputs
(
self
):
"""Do any input processing that could raise errors
...
...
src/ZPublisher/tests/testBaseRequest.py
View file @
a78c15f8
...
...
@@ -424,6 +424,22 @@ class TestBaseRequest(unittest.TestCase, BaseRequest_factory):
r
=
self
.
_makeOne
(
root
)
self
.
assertRaises
(
NotFound
,
r
.
traverse
,
'folder/simpleFrozenSet'
)
def
test_close_w_broken_subscriber
(
self
):
# See: https://github.com/zopefoundation/Zope/issues/16
from
zope.event
import
subscribers
root
,
folder
=
self
.
_makeRootAndFolder
()
r
=
self
.
_makeOne
(
root
)
r
.
other
[
'foo'
]
=
'Foo'
BEFORE
=
subscribers
[:]
def
_broken
(
event
):
raise
ValueError
(
"I'm broken"
)
subscribers
.
append
(
_broken
)
try
:
self
.
assertRaises
(
ValueError
,
r
.
close
)
finally
:
subscribers
[:]
=
BEFORE
self
.
assertEqual
(
r
.
other
,
{})
def
test_hold_after_close
(
self
):
# Request should no longer accept holds after it has been closed
root
,
folder
=
self
.
_makeRootAndFolder
()
...
...
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