Skip to content
Snippets Groups Projects
Commit 281521fe authored by Glenn Glazer's avatar Glenn Glazer
Browse files

rollback hardcoded version

parent cc79b566
No related branches found
No related tags found
No related merge requests found
...@@ -233,23 +233,31 @@ void LLCrashLogger::gatherFiles() ...@@ -233,23 +233,31 @@ void LLCrashLogger::gatherFiles()
gatherPlatformSpecificFiles(); gatherPlatformSpecificFiles();
//Construct crash report URL //Use the debug log to reconstruct the URL to send the crash report to
//CNAMES for the VIPs are viewercrashreport.{agni, damballah}.lindenlab.com if(mDebugLog.has("CrashHostUrl"))
std::string grid = mDebugLog["GridName"].asString(); {
LLStringUtil::toLower(grid); // Crash log receiver has been manually configured.
if(grid == "agni") mCrashHost = mDebugLog["CrashHostUrl"].asString();
{ }
mCrashHost = "https://viewercrashreport.agni.lindenlab.com/cgi-bin/viewercrashreceiver.py"; else if(mDebugLog.has("CurrentSimHost"))
{
} mCrashHost = "https://";
else mCrashHost += mDebugLog["CurrentSimHost"].asString();
{ mCrashHost += ":12043/crash/report";
mCrashHost = "https://viewercrashreport.damballah.lindenlab.com/cgi-bin/viewercrashreceiver.py"; }
} else if(mDebugLog.has("GridName"))
{
// This is a 'little' hacky, but its the best simple solution.
std::string grid_host = mDebugLog["GridName"].asString();
LLStringUtil::toLower(grid_host);
mCrashHost = "https://login.";
mCrashHost += grid_host;
mCrashHost += ".lindenlab.com:12043/crash/report";
}
// Use login servers as the alternate, since they are already load balanced and have a known name // Use login servers as the alternate, since they are already load balanced and have a known name
mAltCrashHost = mCrashHost; mAltCrashHost = "https://login.agni.lindenlab.com:12043/crash/report";
mCrashInfo["DebugLog"] = mDebugLog; mCrashInfo["DebugLog"] = mDebugLog;
mFileMap["StatsLog"] = gDirUtilp->getExpandedFilename(LL_PATH_DUMP,"stats.log"); mFileMap["StatsLog"] = gDirUtilp->getExpandedFilename(LL_PATH_DUMP,"stats.log");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment