net.httpclient_listener: Don't notify request of closed connection if the close was initiated by us

Fri, 19 Feb 2010 03:23:51 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Fri, 19 Feb 2010 03:23:51 +0000
changeset 2812
496a80322a51
parent 2811
11df731e1b87
child 2813
46dfcc33ea9e

net.httpclient_listener: Don't notify request of closed connection if the close was initiated by us

net/httpclient_listener.lua file | annotate | diff | comparison | revisions
--- a/net/httpclient_listener.lua	Fri Jan 15 18:30:33 2010 +0100
+++ b/net/httpclient_listener.lua	Fri Feb 19 03:23:51 2010 +0000
@@ -30,7 +30,7 @@
 
 function httpclient.disconnect(conn, err)
 	local request = requests[conn];
-	if request then
+	if request and err ~= "closed" then
 		request:reader(nil);
 	end
 	requests[conn] = nil;

mercurial