Fix infinite loop in TorExitNodeManager.
This commit is contained in:
parent
01514f83a0
commit
c3f53c4dd9
|
@ -69,7 +69,7 @@ public class TorExitNodeManager implements Managed {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void handleExitListChanged(final InputStream exitList) {
|
private void handleExitListChanged(final InputStream exitList) {
|
||||||
REFRESH_TIMER.record(() -> handleExitListChanged(exitList));
|
REFRESH_TIMER.record(() -> handleExitListChangedStream(exitList));
|
||||||
}
|
}
|
||||||
|
|
||||||
@VisibleForTesting
|
@VisibleForTesting
|
||||||
|
|
Loading…
Reference in New Issue