Changeset

2674:a1fdfd7318df

net.httpclient_listener: Don't notify request of closed connection if the close was initiated by us
author Matthew Wild <mwild1@gmail.com>
date Fri, 19 Feb 2010 03:23:51 +0000
parents 2673:61ae351c19b5
children 2675:ab643a77da2d
files net/httpclient_listener.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/net/httpclient_listener.lua	Fri Feb 19 03:22:42 2010 +0000
+++ b/net/httpclient_listener.lua	Fri Feb 19 03:23:51 2010 +0000
@@ -30,7 +30,7 @@
 
 function httpclient.ondisconnect(conn, err)
 	local request = requests[conn];
-	if request then
+	if request and err ~= "closed" then
 		request:reader(nil);
 	end
 	requests[conn] = nil;