|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2020-12-18 14:08 UTC] cmb@php.net
-Status: Open
+Status: Feedback
-Assigned To:
+Assigned To: cmb
[2020-12-18 14:08 UTC] cmb@php.net
[2020-12-27 04:22 UTC] pecl-dev at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 23:00:01 2025 UTC |
Description: ------------ When you try to connect to qpid-cpp-server 0.14, the following happens: Expected 0x000A000A method frame on channel 0, got frame type 65 Aborted (core dumped) qpid-cpp-server uses AMQP 1.0 instead of AMQP 0-9-1 so it shouldn't work per-se, but it should throw an exception and not crash. Test script: --------------- $connection = new AMQPConnection(); $connection->setHost('127.0.0.1'); // running qpid on 5672 $connection->connect(); Expected result: ---------------- Thrown AMQPConnectionException saying the AMQP version is not correct. Actual result: -------------- Expected 0x000A000A method frame on channel 0, got frame type 65 Aborted (core dumped)