We are using the amqp10 package for nodejs to receive messages from a queue on azure's service bus. We are sometimes getting an error
{ Error: read ETIMEDOUT at _errnoException (util.js:1022:11) at TLSWrap.onread (net.js:615:25) code: 'ETIMEDOUT', errno: 'ETIMEDOUT', syscall: 'read' }
but this is thrown around 12 minutes after it stops receiving messages. Is there a way to configure the timeout? We're using the provided service bus policy Policy.ServiceBusQueue
.
The code is available here