The following python tests still fail for me when running against the
java broker:
test_basic_delivery_immediate (tests.broker.BrokerTests) ... ERROR
test_basic_delivery_queued (tests.broker.BrokerTests) ... ERROR
test_example (tests.example.ExampleTest) ... ERROR
In each case the cause seems to be a channel exception 'Cannot declare
queue, as exclusive queue with same name declared on another connection
[error code 405]'.
In each case the problem appears to be a queue called 'test-queue'. I
would speculate that there is a queue of the same name declared as
exclusive in an earlier test that hasn't been cleaned up on termination
of the connection (which I assume happens at the end of every test).
I have made a change to the python client, but tested with and without
that change and in both cases the result was the same.
Is anyone else seeing this? Is it a new error?