
codesite-noreply at google
Nov 2, 2009, 10:11 AM
Post #2 of 3
(287 views)
Permalink
|
|
Re: Issue 359 in cherokee: Make information source break if it timeouts
[In reply to]
|
|
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 _______________________________________________ Cherokee-dev mailing list Cherokee-dev [at] lists http://lists.octality.com/listinfo/cherokee-dev
|