Patch for http-access2, maybe workaround for a problem that is actually in MediaWiki
parent
8ea9c02a37
commit
e53bd9ae65
@ -0,0 +1,24 @@
|
|||||||
|
--- http-access2.rb.orig 2005-10-05 21:55:04.000000000 +0200
|
||||||
|
+++ http-access2.rb 2005-10-05 22:49:05.000000000 +0200
|
||||||
|
@@ -1464,6 +1464,14 @@
|
||||||
|
timeout(@receive_timeout) do
|
||||||
|
begin
|
||||||
|
initial_line = socket.gets("\n")
|
||||||
|
+ if initial_line == "0\r\n"
|
||||||
|
+ # Regetting initial_line
|
||||||
|
+ initial_line = socket.gets("\n")
|
||||||
|
+ if initial_line == "\r\n"
|
||||||
|
+ # Regetting initial_line, again
|
||||||
|
+ initial_line = socket.gets("\n")
|
||||||
|
+ end
|
||||||
|
+ end
|
||||||
|
if initial_line.nil?
|
||||||
|
raise KeepAliveDisconnected.new
|
||||||
|
end
|
||||||
|
@@ -1586,3 +1594,5 @@
|
||||||
|
|
||||||
|
|
||||||
|
HTTPClient = HTTPAccess2::Client
|
||||||
|
+
|
||||||
|
+# vim:tabstop=8
|
||||||
|
|
Reference in New Issue