Only log error when not sigpipe
parent
6dc0e88988
commit
599d21050d
|
@ -295,7 +295,8 @@ bool StreamBase::sendTextFrame(const char *frame_text) {
|
||||||
}
|
}
|
||||||
int rc = fwrite(buffer, n_bytes, 1, stdout);
|
int rc = fwrite(buffer, n_bytes, 1, stdout);
|
||||||
if (rc != 1) {
|
if (rc != 1) {
|
||||||
Error("Unable to send stream text frame: %d %s", rc, strerror(errno));
|
if (!zm_terminate)
|
||||||
|
Error("Unable to send stream text frame: %d %s", rc, strerror(errno));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
fputs("\r\n\r\n", stdout);
|
fputs("\r\n\r\n", stdout);
|
||||||
|
|
Loading…
Reference in New Issue