php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #76951 Stomp::hasFrame return true when ActiveMQ shutdown
Submitted: 2018-09-30 06:09 UTC Modified: -
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: jiangyuwise at gmail dot com Assigned:
Status: Open Package: stomp (PECL)
PHP Version: 7.2.10 OS: centos7
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: jiangyuwise at gmail dot com
New email:
PHP Version: OS:

 

 [2018-09-30 06:09 UTC] jiangyuwise at gmail dot com
Description:
------------
I'm trying to use stomp extension to read message from activeMQ.
But when the activeMQ has shut down, the Stomp::hasFrame function returns true.

Test script:
---------------
try {
    $stomp = new Stomp($hosts);
    $stomp->subscribe($queue);
    sleep(10); // shut down activeMQ quickly
    $hasFrame = $stomp->hasFrame($queue);
    var_dump($hasFrame);
    if ($hasFrame) {
        // read frame
    }
} catch (StompException $e) {
    echo $e->getCode(), ': ', $e->getMessage(), PHP_EOF;
}


Patches

Pull Requests

 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Tue Mar 11 19:01:31 2025 UTC