https://bz.apache.org/bugzilla/show_bug.cgi?id=56188

--- Comment #17 from Luca Toscano <[email protected]> ---
(In reply to Luca Toscano from comment #14)
> To add some references (still to verify):
> 
> -
> https://github.com/facebook/hhvm/blob/HHVM-3.17/hphp/runtime/server/http-
> request-handler.cpp#L411
> So php-fpm seems not supporting it, meanwhile HHVM returns a 503 by default.
> These are not the full spectrum of FCGI backends but two famous ones that I
> know.

I was probably wrong about HHVM:

https://github.com/facebook/hhvm/blob/HHVM-3.17/hphp/runtime/server/fastcgi/fastcgi-session.cpp#L475-L480

void FastCGISession::onRecordImpl(const fcgi::abort_record* rec) {
  if (!m_requestId || rec->requestId != m_requestId) {
    // Garbage record
    dropConnection();
    return;
  }
}

It seems to just drop the connection if an abort is sent. Again, I am not an
expert so if anybody has more info please reply :)

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to