No longer print warning for page load failures caused by a user disconnect
This commit is contained in:
parent
72cfc82a9f
commit
b89875ea37
1 changed files with 5 additions and 2 deletions
|
@ -806,8 +806,11 @@ namespace Mist{
|
||||||
}
|
}
|
||||||
loadPageForKey(tid, keyNum + (getNextKey ? 1 : 0));
|
loadPageForKey(tid, keyNum + (getNextKey ? 1 : 0));
|
||||||
if (!curPage.count(tid) || !curPage[tid].mapped){
|
if (!curPage.count(tid) || !curPage[tid].mapped){
|
||||||
WARN_MSG("Aborting seek to %" PRIu64 "ms in track %zu: not available.", pos, tid);
|
//Sometimes the page load fails because of a connection loss to the user. This is fine.
|
||||||
userSelect.erase(tid);
|
if (keepGoing()){
|
||||||
|
WARN_MSG("Aborting seek to %" PRIu64 "ms in track %zu: not available.", pos, tid);
|
||||||
|
userSelect.erase(tid);
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
Util::sortedPageInfo tmp;
|
Util::sortedPageInfo tmp;
|
||||||
|
|
Loading…
Add table
Reference in a new issue