diff options
author | Wolfpup Lowenhar <wolfpup67@earthlink.net> | 2010-11-11 22:37:51 -0500 |
---|---|---|
committer | Wolfpup Lowenhar <wolfpup67@earthlink.net> | 2010-11-11 22:37:51 -0500 |
commit | 899f470deca2cbc775e87147852e0b118464896f (patch) | |
tree | bfee59a4141c4c60ffde94ff8ed6ed9a14d125a6 /indra/llmessage | |
parent | eea9460ba5e18b081723a56d1d7d0bbf1f4edd85 (diff) | |
parent | 5f099265fc36c885122457edd87a1ec8c1a80873 (diff) |
STORM-102: Merge from viewer-development
Diffstat (limited to 'indra/llmessage')
-rw-r--r-- | indra/llmessage/llavatarnamecache.cpp | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/indra/llmessage/llavatarnamecache.cpp b/indra/llmessage/llavatarnamecache.cpp index 2f2d9099a3..7396117d84 100644 --- a/indra/llmessage/llavatarnamecache.cpp +++ b/indra/llmessage/llavatarnamecache.cpp @@ -286,18 +286,8 @@ public: } // No information in header, make a guess - if (status == 503) - { - // ...service unavailable, retry soon - const F64 SERVICE_UNAVAILABLE_DELAY = 600.0; // 10 min - return now + SERVICE_UNAVAILABLE_DELAY; - } - else - { - // ...other unexpected error - const F64 DEFAULT_DELAY = 3600.0; // 1 hour - return now + DEFAULT_DELAY; - } + const F64 DEFAULT_DELAY = 120.0; // 2 mintues + return now + DEFAULT_DELAY; } }; |