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
176325b3
Commit
176325b3
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 2.13 branch.
parent
664186db
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
4 deletions
+25
-4
doc/CHANGES.rst
doc/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.
doc/CHANGES.rst
View file @
176325b3
...
...
@@ -8,6 +8,9 @@ http://docs.zope.org/zope2/
2.13.23 (unreleased)
--------------------
- Issue #16: prevent leaked connections when broken ``EndRequestEvent``
subscribers raise exceptions.
- LP #1387225: Zope 2.13.x w/ zope.browserpage 4.x doesn't start.
- LP #1387138: Zope 2.13.x w/ zope.pagetemplate 4.x doesn't start.
...
...
src/ZPublisher/BaseRequest.py
View file @
176325b3
...
...
@@ -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 @
176325b3
...
...
@@ -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