You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What do you mean by 'missing'? There are messages sent that don't seem to be received? I would suggest that you ask the Azure Service Bus support team for any information they can give.
(You can set env var DEBUG=rhea* to get very detailed logging, but that may be too much if the issue is intermittent.)
we were using RHEA amqp v1.0.9 from many years, we recently started seeing that messages are missing intermittently on the receiver end.
tried adding some logging with events, but no luck
on receiver side added below events to capture.
added similar logging on container level
container.on('connection_close', () => {
winston.error('connection_close');
});
container.on('connection_error', (e) => {
winston.error('connection_error', e);
});
container.on('protocol_error', (e) => {
winston.error('protocol_error', e);
});
container.on('error', (e) => {
winston.error('error', e);
});
The text was updated successfully, but these errors were encountered: