Skip to content

failover method have some bugs #30

@jiansongjay

Description

@jiansongjay

Stomp 1.0.0
Stomp.php
do
{
$read = fread($this->_socket, $rb);
if ($read === false)
{
$this->_reconnect();
return $this->readFrame();
}
$data .= $read;
if (strpos($data, "\x00") !== false)
{
$end = true;
$data = rtrim($data, "\n");
}
$len = strlen($data);
} while ($len < 2 || $end == false);

This code have something wrong. When I use failover and shut down one of mq instance. It will not come out from the code above. The $data will always be empty.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions