Package Version - "@azure/service-bus": "^1.1.6",:

Operating system:
[ ] nodejs
The bug related to https://github.com/Azure/azure-sdk-for-js/issues/6870
Describe the bug
We have a service where a service bus listener is created to receive the messages from a single dedicated queue. We have different environments running with each different queue listener.
It works perfectly for days but after that, it stops receiving any message from the queue and the messages stay there in the queue unread and unnoticed by anyone until one finds it out and restarts the service.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
We expect it to run without any interruption, we are annoyed to restart the service after every few days from the past 2-3 months.
Screenshots
But in our service logs, as I have added console.log() in errorMessageHandler, we see the error when the service stops receiving messages.

Additional context
Here is the code snippet,
const successMessageHandler = async (message) => {
// here we are handling the message (operation to perform internally within the service after message is received)
};
const errorMessageHandler = (error) => {
// Handle error
logger.error('SERVICE BUS : ERROR DURING MESSAGE HANDLING', error);
};
receiver.registerMessageHandler(successMessageHandler, errorMessageHandler);
@ramya-rao-a or @chradek Please help me with the same as upgrading the version also didn't help.
Also, I checked with azure support for the past 1 week and there was no update or unexpected behavior in the provided time.
FYI @ramya-rao-a
Also, I see you have mentioned here regarding creating another receiver in case the link is broken, but I am not sure if this is actually done.

Thanks for reporting @kks010
OperationTimeoutError?Also, can you check the version of rhea-promise package getting used in your application? This is a package that we depend on in the service bus package. The error you are seeing is originating from this package where it is not able to establish an AMQP session with the service in 60 seconds. Interestingly, it is marked as non retryable error, but it should have been a retryable error.
In case of non retryable errors we do not recover the receiver link.
Hi @ramya-rao-a
Thanks for replying. Here are the answers to your questions:
The version of rhea-package is as follows:

Also, please help with more details on how we can make it a retriable error.
Also, I had a discussion Microsoft support team and found that there was an update from 12:03 am to 5:00 am UTC ON 9th May.
But according to them if the retry logic is written then the connection would have been re-established. But I am not sure if this has to be in the code logic.
As I can see here in this Pull https://github.com/Azure/azure-sdk-for-js/pull/8401
that the problem was resolved with the hanging part.
If not, please help me understand the same.
Also, I would recommend you to provide help in making this retriable.
Thanks for your patience @kks010
We will look into why OperationTimeoutError is not retryable and make it so ASAP.
We will post a comment once we have an update
We have released an update to the @azure/service-bus package with version 1.1.7 where the OperationTimeoutError will be considered as a retryable error.
For more, see the changelog for 1.1.7
And thanks so much for reporting the issue!
Thanks @ramya-rao-a