HADOOP-6819. [Herriot] Shell command for getting the new exceptions in
the logs returning exitcode 1 after executing successfully. Contributed by Vinay Thota. git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@962914 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d2ade6aec5
commit
0ae9cbb3a4
|
@ -1023,6 +1023,10 @@ Release 0.21.0 - Unreleased
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
|
||||||
|
HADOOP-6819. [Herriot] Shell command for getting the new exceptions in
|
||||||
|
the logs returning exitcode 1 after executing successfully. (Vinay Thota
|
||||||
|
via cos)
|
||||||
|
|
||||||
HADOOP-6847. Problem staging 0.21.0 artifacts to Apache Nexus Maven
|
HADOOP-6847. Problem staging 0.21.0 artifacts to Apache Nexus Maven
|
||||||
Repository (Giridharan Kesavan via cos)
|
Repository (Giridharan Kesavan via cos)
|
||||||
|
|
||||||
|
|
|
@ -264,7 +264,7 @@ public aspect DaemonProtocolAspect {
|
||||||
if (index++ < list.length -1) {
|
if (index++ < list.length -1) {
|
||||||
filterExpPattern.append("grep -v " + excludeExp + " | ");
|
filterExpPattern.append("grep -v " + excludeExp + " | ");
|
||||||
} else {
|
} else {
|
||||||
filterExpPattern.append("grep -vc " + excludeExp);
|
filterExpPattern.append("grep -v " + excludeExp + " | wc -l");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
cmd = new String[] {
|
cmd = new String[] {
|
||||||
|
|
Loading…
Reference in New Issue