You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My C program is calling FCGI_accept() in a while loop.
while (FCGI_Accept() >= 0) {
blah
}
When I hit the nginx server with my request it works once then FCGI-Accept ruturns -1 and that means the process is respawning every time I make a request.
Is there a way to have tohave fcgiwrap honour the Accept for the next call?
The text was updated successfully, but these errors were encountered:
up
while( !finish_process && FCGI_Accept() >= 0 ) { <-- first time FCGI_Accept() return 0.
a = FCGI_Accept();
msDebug("==FCGI_Accept on start== %d\n", a); <-- first time FCGI_Accept() return -1.
I've a nginx server which is passing requests via /var/run/fcgiwrap.socket
When I hit the nginx server with my request it works once then FCGI-Accept ruturns -1 and that means the process is respawning every time I make a request.
Is there a way to have tohave fcgiwrap honour the Accept for the next call?
The text was updated successfully, but these errors were encountered: