Reputation: 473
So we have a signalr application that when the server has a hickup, the clients call "reconnect" every 2 seconds indefinitely (even though the server is back up). When the page refreshes it connects just fine. couples things that I noticed:
This is causing our prod server to go down 3 or 4 times a day as soon as the clients lose connection for a second
Upvotes: 1
Views: 455
Reputation: 473
Figured out the issue. there was an exception being thrown SILENTLY in the Reconnected Stack. not sure why considering the same code is called in the Connect Stack. anyway, reworked it that we don't have to make the same call, and not need it. works fine now
Upvotes: 1