Commit ed51b582 by Oliver Woodman

Fix backoff for SingleSampleSource.

parent 5f51a4ff
...@@ -171,7 +171,7 @@ public final class SingleSampleSource implements SampleSource, SampleSourceReade ...@@ -171,7 +171,7 @@ public final class SingleSampleSource implements SampleSource, SampleSourceReade
if (elapsedMillis < getRetryDelayMillis(currentLoadableExceptionCount)) { if (elapsedMillis < getRetryDelayMillis(currentLoadableExceptionCount)) {
return; return;
} }
clearCurrentLoadableException(); currentLoadableException = null;
} }
loader.startLoading(this, this); loader.startLoading(this, this);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment