Hi All,
I have found two issues with nginx 1.8.1 version .
1. nginx is not forwarding the http pipelined requests to the FastCGI server. I have a case where the browser sends a GET request to submit a job
to my FastCGI application for processing and then sends a DELETE request to cancel the job while in progress. But though the two requests might be pipelined at nginx, it is not the same case while forwarding those two requests to the fastCGI server . It is only sending two requests one after the other and hence by the time DELETE request reached my application, the job is already completed which in the sense the GET request is finished.
Note: I dont use LUA .
I have found two issues with nginx 1.8.1 version .
1. nginx is not forwarding the http pipelined requests to the FastCGI server. I have a case where the browser sends a GET request to submit a job
to my FastCGI application for processing and then sends a DELETE request to cancel the job while in progress. But though the two requests might be pipelined at nginx, it is not the same case while forwarding those two requests to the fastCGI server . It is only sending two requests one after the other and hence by the time DELETE request reached my application, the job is already completed which in the sense the GET request is finished.
Note: I dont use LUA .