[Cherokee-dev] Issue 359 in cherokee: Make information source break if it timeouts
codesite-noreply at google.com
codesite-noreply at google.com
Mon Nov 2 19:11:31 CET 2009
Updates:
Status: Started
Comment #1 on issue 359 by alobbs: Make information source break if it
timeouts
http://code.google.com/p/cherokee/issues/detail?id=359
1.- Create a unresponsive server:
=====
import time
import socket
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind(('', 8080))
s.listen(1)
while True:
time.sleep(1)
=====
2.- Configure Cherokee to use the reverse HTTP proxy with an Information
Source pointing to localhost:8080
3.- Apply proxy_disable_timeout-1.diff, recompile and run the server.
4.- Test it out.
I'd like to be sure this patch does not break anything before applying it
to trunk.
Attachments:
proxy_disable_timeout-1.diff 2.7 KB
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
More information about the Cherokee-dev
mailing list