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
e5caef0c
Commit
e5caef0c
authored
Apr 13, 2010
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
http: remove unnecessary timeout
parent
d59db097
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
10 deletions
+1
-10
gevent/http.py
gevent/http.py
+1
-10
No files found.
gevent/http.py
View file @
e5caef0c
...
...
@@ -4,7 +4,6 @@ import traceback
from
gevent
import
core
from
gevent.greenlet
import
Greenlet
from
gevent.event
import
Event
from
gevent.timeout
import
Timeout
import
_socket
as
socket
...
...
@@ -69,15 +68,7 @@ class HTTPServer(object):
# TODO
#3. Wait until every connection is closed or timeout expires
if
self
.
_requests
:
timer
=
Timeout
.
start_new
(
timeout
)
try
:
try
:
self
.
_no_connections_event
.
wait
(
timeout
=
timeout
)
except
Timeout
,
ex
:
if
timer
is
not
ex
:
raise
finally
:
timer
.
cancel
()
self
.
_no_connections_event
.
wait
(
timeout
=
timeout
)
#4. forcefull close all the connections
# TODO
#5. free http instance
...
...
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