HADOOP-13770. Shell.checkIsBashSupported swallowed an interrupted exception. Contributed by Wei-Chiu Chuang
This commit is contained in:
parent
3de130252d
commit
c017171da0
|
@ -734,8 +734,7 @@ public abstract class Shell {
|
|||
}
|
||||
}
|
||||
|
||||
public static final boolean isBashSupported = checkIsBashSupported();
|
||||
private static boolean checkIsBashSupported() {
|
||||
public static boolean checkIsBashSupported() throws InterruptedIOException {
|
||||
if (Shell.WINDOWS) {
|
||||
return false;
|
||||
}
|
||||
|
@ -746,6 +745,9 @@ public abstract class Shell {
|
|||
String[] args = {"bash", "-c", "echo 1000"};
|
||||
shexec = new ShellCommandExecutor(args);
|
||||
shexec.execute();
|
||||
} catch (InterruptedIOException iioe) {
|
||||
LOG.warn("Interrupted, unable to determine if bash is supported", iioe);
|
||||
throw iioe;
|
||||
} catch (IOException ioe) {
|
||||
LOG.warn("Bash is not supported by the OS", ioe);
|
||||
supported = false;
|
||||
|
|
|
@ -750,7 +750,7 @@ public class NodeManager extends CompositeService
|
|||
// Failed to start if we're a Unix based system but we don't have bash.
|
||||
// Bash is necessary to launch containers under Unix-based systems.
|
||||
if (!Shell.WINDOWS) {
|
||||
if (!Shell.isBashSupported) {
|
||||
if (!Shell.checkIsBashSupported()) {
|
||||
String message =
|
||||
"Failing NodeManager start since we're on a "
|
||||
+ "Unix-based system but bash doesn't seem to be available.";
|
||||
|
|
Loading…
Reference in New Issue