From 7823ea6d72dcaeb18478efe8e26701d5dae71dcd Mon Sep 17 00:00:00 2001 From: Nicky Date: Sun, 26 Aug 2012 12:56:13 +0200 Subject: [PATCH] FIRE-7300; Gracefully handle 'Started' status. Ignore it and continue login. --- indra/viewer_components/login/lllogin.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/indra/viewer_components/login/lllogin.cpp b/indra/viewer_components/login/lllogin.cpp index d480b63094..6da3a2adb2 100644 --- a/indra/viewer_components/login/lllogin.cpp +++ b/indra/viewer_components/login/lllogin.cpp @@ -271,6 +271,15 @@ void LLLogin::Impl::login_(LLCoros::self& self, std::string uri, LLSD login_para } return; // Done! } + + // FIRE-7300, sometimes we end with "Started" here. Slightly slow server? Seems to be ok to just skip it. Otherwise we'd error out and crash in the if case 9 lines below. + if( status == "Started") + { + LL_DEBUGS("LLLogin") << mAuthResponse << LL_ENDL; + continue; + } + // + // If we don't recognize status at all, trouble if (! (status == "CURLError" || status == "XMLRPCError"