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
now, if you shutdown RabbitMQ server, when process inside while - perl process will end right after publish.
try or eval will not help.
That's happened because of write call on closed handle
EPIPE
fd is connected to a pipe or socket whose reading end is closed. When this happens the writing process will also receive a SIGPIPE signal. (Thus, the write return value is seen only if the program catches, blocks or ignores this signal.) http://linux.die.net/man/2/write
And because we unable to handle SIGPIPE - our program is closed.
The text was updated successfully, but these errors were encountered:
Hello. there is a bug.
example code:
now, if you shutdown RabbitMQ server, when process inside while - perl process will end right after publish.
try or eval will not help.
That's happened because of write call on closed handle
And because we unable to handle SIGPIPE - our program is closed.
The text was updated successfully, but these errors were encountered: