Github user ganeshmurthy commented on the issue:
https://github.com/apache/qpid-dispatch/pull/176
The "no-such-handle" error comes from the following code in transport.c in
a few places.
```
pn_link_t *link = pni_handle_state(ssn, handle);
if (!link) {
return pn_do_error(transport, "amqp:invalid-field", "no such handle:
%u", handle);
}
```
Looks like proton is trying to send a message to a receiver on a link that
was closed abruptly. The router will try to redeliver this message to another
receiver. This error can be ignored in the context of what this test is trying
to achieve.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]