Skip to content
Snippets Groups Projects
Commit dddb3498 authored by Andrey Kleshchev's avatar Andrey Kleshchev Committed by Andrey Lihatskiy
Browse files

SL-16106 Fixed asset storage trying to request data on shutdown

parent 70551782
No related branches found
No related tags found
No related merge requests found
......@@ -520,6 +520,12 @@ void LLViewerAssetStorage::assetRequestCoro(
boost::bind(&LLViewerAssetStorage::capsRecvForRegion, this, _1, capsRecv.getName()));
llcoro::suspendUntilEventOn(capsRecv);
if (LLApp::isExiting() || !gAssetStorage)
{
return;
}
LL_WARNS_ONCE("ViewerAsset") << "capsRecv got event" << LL_ENDL;
LL_WARNS_ONCE("ViewerAsset") << "region " << gAgent.getRegion() << " mViewerAssetUrl " << mViewerAssetUrl << LL_ENDL;
}
......
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