From 55788495089e587de71fbfb89463a9efd1432612 Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Sun, 24 Feb 2019 09:08:08 -0500 Subject: [PATCH] On second thought, there's no reason to disconnect until region isn't alive So let's not do that anymore, making us resilient against a grid that has HTTP problems. Thanks for the help, Aru! --- indra/newview/lleventpoll.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/indra/newview/lleventpoll.cpp b/indra/newview/lleventpoll.cpp index 30146adcb..b804b81be 100644 --- a/indra/newview/lleventpoll.cpp +++ b/indra/newview/lleventpoll.cpp @@ -227,6 +227,7 @@ namespace // They are essentially disconnected from the region even though some things may still work. // Since things won't get better until they relog we force a disconnect now. + /* Singu Note: There's no reason to disconnect, just because this failed a few too many times // *NOTE:Mani - The following condition check to see if this failing event poll // is attached to the Agent's main region. If so we disconnect the viewer. // Else... its a child region and we just leave the dead event poll stopped and @@ -236,6 +237,7 @@ namespace LL_WARNS() << "Forcing disconnect due to stalled main region event poll." << LL_ENDL; LLAppViewer::instance()->forceDisconnect(LLTrans::getString("AgentLostConnection")); } + */ } }