Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
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
gevent
Commits
77b41a28
Commit
77b41a28
authored
Mar 02, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a few 'leaks' of timers. Possibly related to #1130
parent
0ac36696
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/greentest/test__pywsgi.py
src/greentest/test__pywsgi.py
+2
-2
No files found.
src/greentest/test__pywsgi.py
View file @
77b41a28
...
@@ -276,7 +276,7 @@ class TestCase(greentest.TestCase):
...
@@ -276,7 +276,7 @@ class TestCase(greentest.TestCase):
try
:
try
:
self
.
server
.
stop
()
self
.
server
.
stop
()
finally
:
finally
:
timeout
.
c
ancel
()
timeout
.
c
lose
()
# XXX currently listening socket is kept open in gevent.wsgi
# XXX currently listening socket is kept open in gevent.wsgi
def
connect
(
self
):
def
connect
(
self
):
...
@@ -351,7 +351,7 @@ class CommonTests(TestCase):
...
@@ -351,7 +351,7 @@ class CommonTests(TestCase):
read_http
(
fd
,
code
=
404
,
reason
=
'Not Found'
,
body
=
'not found'
)
read_http
(
fd
,
code
=
404
,
reason
=
'Not Found'
,
body
=
'not found'
)
fd
.
close
()
fd
.
close
()
finally
:
finally
:
timeout
.
c
ancel
()
timeout
.
c
lose
()
except
AssertionError
as
ex
:
except
AssertionError
as
ex
:
if
ex
is
not
exception
:
if
ex
is
not
exception
:
raise
raise
...
...
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