MAINT-5693: Allow stale requests

master
Rider Linden 2016-03-01 15:46:08 -08:00
parent 217f10f122
commit 919a11031b
1 changed files with 2 additions and 4 deletions

View File

@ -3422,14 +3422,12 @@ void LLAppearanceMgr::serverAppearanceUpdateCoro()
if (cofVersion < lastRcv)
{
LL_WARNS("Avatar") << "Have already received update for cof version " << lastRcv
<< " ignoring request for " << cofVersion << LL_ENDL;
return;
<< " but requesting for " << cofVersion << LL_ENDL;
}
if (lastReq > cofVersion)
{
LL_WARNS("Avatar") << "Request already in flight for cof version " << lastReq
<< " ignoring request for " << cofVersion << LL_ENDL;
return;
<< " but requesting for " << cofVersion << LL_ENDL;
}
}