Alan Conway created QPID-6252:
---------------------------------

             Summary: AMQP 1.0 browsing client generates large number of errors 
on broker.
                 Key: QPID-6252
                 URL: https://issues.apache.org/jira/browse/QPID-6252
             Project: Qpid
          Issue Type: Bug
          Components: C++ Client
    Affects Versions: 0.31
            Reporter: Alan Conway
            Assignee: Alan Conway


 An AMQP 1.0 client that uses a mixtiure of browsing and acquiring receivers on 
the same session generates spurious error messages in the broker log like this:

[Broker] error Delivery returned for unknown link

The following python program illustrates the problem.

----
from qpid_messaging import *

c = Connection.establish("localhost", protocol="amqp1.0")
ssn = c.session()
ssn.sender("foo;{create:always}").send("foo")
r = ssn.receiver("foo;{mode:browse}")
r.fetch().content
r.close()
ssn.acknowledge()




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to