Merge f5e1d15a10
into 5ecab683eb
commit
c59bec40a0
|
@ -30,7 +30,7 @@ class ProtocolStreamWriter implements ProtocolWriter
|
||||||
$totalBytesWritten = 0;
|
$totalBytesWritten = 0;
|
||||||
|
|
||||||
while ($totalBytesWritten < $msgSize) {
|
while ($totalBytesWritten < $msgSize) {
|
||||||
$bytesWritten = fwrite($this->output, substr($data, $totalBytesWritten));
|
$bytesWritten = @fwrite($this->output, substr($data, $totalBytesWritten));
|
||||||
$totalBytesWritten += $bytesWritten;
|
$totalBytesWritten += $bytesWritten;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue