update r2422
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c
index 458e456..e281973 100644
--- a/src/http/ngx_http_core_module.c
+++ b/src/http/ngx_http_core_module.c
@@ -2093,19 +2093,10 @@
     sr->read_event_handler = ngx_http_request_empty_handler;
     sr->write_event_handler = ngx_http_handler;
 
-    if (c->data == r) {
-
-        for (pr = r->postponed; pr; pr = pr->next) {
-            if (pr->request) {
-                goto no_activate;
-            }
-        }
-
+    if (c->data == r && r->postponed == NULL) {
         c->data = sr;
     }
 
-no_activate:
-
     sr->in_addr = r->in_addr;
     sr->port = r->port;
     sr->port_text = r->port_text;