MAPREDUCE-6639 Process hangs in LocatedFileStatusFetcher if FileSystem.get throws. Ryan Blue via stevel

This commit is contained in:
Steve Loughran 2016-05-12 18:59:56 +01:00
parent 0bbe01f8d5
commit 7eddecd357
1 changed files with 2 additions and 2 deletions

View File

@ -175,7 +175,7 @@ public class LocatedFileStatusFetcher {
private void registerError(Throwable t) {
lock.lock();
try {
if (unknownError != null) {
if (unknownError == null) {
unknownError = t;
condition.signal();
}
@ -368,4 +368,4 @@ public class LocatedFileStatusFetcher {
registerError(t);
}
}
}
}