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
Apparently libfcgi calls perror and exit when it cannot open the listening socket, which is rather brutal. Not sure if fixing that would be in the scope of this project, in contrast with fixing it upstream.
FastCGI::NativeCall.new(path =>'/tmp/foo/bar.sock');
# expected behavior: throw exception or return failure# actual behavior: call to exit()
The text was updated successfully, but these errors were encountered:
Yeah, that is a bit crap really. As this is basically using a fork of the libfcgi I think it would be easiest just to fix it here. I'll take a look in the next week or so.
It seems that the os_unix.c has exit all over the place, I'll have to think about how to signal the failure to the module and handle it appropriately a bit harder.
Apparently libfcgi calls perror and exit when it cannot open the listening socket, which is rather brutal. Not sure if fixing that would be in the scope of this project, in contrast with fixing it upstream.
The text was updated successfully, but these errors were encountered: