diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-02-07 22:50:37 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-02-07 22:50:37 +0200 |
commit | 93805cfbc12c247ceb1f422fb0b97310542d78d9 (patch) | |
tree | 4c05d110fadfee55b01bb33d57ce65ea129e7d94 /indra/llmessage | |
parent | 855f53901a2265400797f33f3fb8b53ddc6cc07f (diff) |
SL-16778 handle shutdown exceptions
These exceptions are expected and do not need to be logged
Diffstat (limited to 'indra/llmessage')
-rw-r--r-- | indra/llmessage/llavatarnamecache.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llmessage/llavatarnamecache.cpp b/indra/llmessage/llavatarnamecache.cpp index c67f59bc0c..846549b368 100644 --- a/indra/llmessage/llavatarnamecache.cpp +++ b/indra/llmessage/llavatarnamecache.cpp @@ -196,6 +196,10 @@ void LLAvatarNameCache::requestAvatarNameCache_(std::string url, std::vector<LLU LLAvatarNameCache::getInstance()->handleAvNameCacheSuccess(results, httpResults); } } + catch (const LLCoros::Stop&) + { + LL_DEBUGS("AvNameCache") << "Received a shutdown exception" << LL_ENDL; + } catch (...) { LOG_UNHANDLED_EXCEPTION(STRINGIZE("coroutine " << LLCoros::getName() |