Hello @Bandaru Nagendra If the message consumption has stopped at a particular point and starts with a redeployment, it indicates that there's likely a deeper problem here. You can troubleshoot and try to identify the root cause for this. Some potential solutions include:
- Each new ServiceBusClient created results in a new AMQP connection, which uses a socket. Prefer treating the Service Bus types as singletons.
- Ensure that you call CloseAsync or DisposeAsync when a client is no longer needed.
- Consider using the Web Socket transport option (which connects via 443) if needed.
Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.