fuCtor / QAMQP

AMQP implementation for Qt
Other
28 stars 3 forks source link

Wrong method id in QueuePrivate::unbind #28

Closed anddid closed 11 years ago

anddid commented 11 years ago

I've been testing qamqp with qpid java broker and the broker throws an exception and disconnects the client when QAMQP::Queue->unbind() is called.

After changing 'QAMQP::Frame::Method frame(QAMQP::Frame::fcQueue, miBind);' to 'QAMQP::Frame::Method frame(QAMQP::Frame::fcQueue, miUnbind);' in QueuePrivate::unbind() everything works as expected.

Best regards