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
About 50% of my messages through HipChatHandler were failing without error. It looks like the same issue as #729 (SlackHandler). Reading the response before closing the socket fixed my issues. I just copied the solution out of the Slack handler.
$res = $this->getResource();
if (is_resource($res)) {
@fread($res, 2048);
}
The text was updated successfully, but these errors were encountered:
About 50% of my messages through HipChatHandler were failing without error. It looks like the same issue as #729 (SlackHandler). Reading the response before closing the socket fixed my issues. I just copied the solution out of the Slack handler.
The text was updated successfully, but these errors were encountered: