Fix backoff for SingleSampleSource.

This commit is contained in:
Oliver Woodman 2015-07-30 17:16:19 +01:00
parent 5f51a4ff83
commit ed51b58242

View file

@ -171,7 +171,7 @@ public final class SingleSampleSource implements SampleSource, SampleSourceReade
if (elapsedMillis < getRetryDelayMillis(currentLoadableExceptionCount)) {
return;
}
clearCurrentLoadableException();
currentLoadableException = null;
}
loader.startLoading(this, this);
}