summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorcallum <none@none>2010-10-15 14:57:29 -0700
committercallum <none@none>2010-10-15 14:57:29 -0700
commita5bf17539846834d3e30eb16cae66b313b2dd060 (patch)
treefa6e16f2f5e400756fc72617a3d9f5a9c5ad6a6c /indra
parent6dcf769ca5c8bef9a170451094f022ac3791f1d9 (diff)
EXP-225 FIX Add debug setting to quit the viewer after N seconds of AFK behavior.
This change makes the logout process less aggressive so zombie sessions do not get left behind
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llappviewer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index 61599ad435..ca2503c447 100644
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -3572,8 +3572,8 @@ void LLAppViewer::idle()
// idle time is more than setting
if ( gAwayTriggerTimer.getElapsedTimeF32() > qas_afk )
{
- // go ahead and just quit
- LLAppViewer::instance()->forceQuit();
+ // go ahead and just quit gracefully
+ LLAppViewer::instance()->requestQuit();
}
}