Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
281521fe
Commit
281521fe
authored
9 years ago
by
Glenn Glazer
Browse files
Options
Downloads
Patches
Plain Diff
rollback hardcoded version
parent
cc79b566
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/llcrashlogger/llcrashlogger.cpp
+22
-14
22 additions, 14 deletions
indra/llcrashlogger/llcrashlogger.cpp
with
22 additions
and
14 deletions
indra/llcrashlogger/llcrashlogger.cpp
+
22
−
14
View file @
281521fe
...
@@ -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"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment