Author: cos
Date: Sat Jul 10 20:55:45 2010
New Revision: 962914
URL: http://svn.apache.org/viewvc?rev=962914&view=rev
Log:
HADOOP-6819. [Herriot] Shell command for getting the new exceptions in
the logs returning exitcode 1 after executing successfully. Contributed
by Vinay Thota.
Modified:
hadoop/common/trunk/CHANGES.txt
hadoop/common/trunk/src/test/system/aop/org/apache/hadoop/test/system/DaemonProtocolAspect.aj
Modified: hadoop/common/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/common/trunk/CHANGES.txt?rev=962914&r1=962913&r2=962914&view=diff
==============================================================================
--- hadoop/common/trunk/CHANGES.txt (original)
+++ hadoop/common/trunk/CHANGES.txt Sat Jul 10 20:55:45 2010
@@ -1023,6 +1023,10 @@ Release 0.21.0 - Unreleased
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
Repository (Giridharan Kesavan via cos)
Modified:
hadoop/common/trunk/src/test/system/aop/org/apache/hadoop/test/system/DaemonProtocolAspect.aj
URL:
http://svn.apache.org/viewvc/hadoop/common/trunk/src/test/system/aop/org/apache/hadoop/test/system/DaemonProtocolAspect.aj?rev=962914&r1=962913&r2=962914&view=diff
==============================================================================
---
hadoop/common/trunk/src/test/system/aop/org/apache/hadoop/test/system/DaemonProtocolAspect.aj
(original)
+++
hadoop/common/trunk/src/test/system/aop/org/apache/hadoop/test/system/DaemonProtocolAspect.aj
Sat Jul 10 20:55:45 2010
@@ -264,7 +264,7 @@ public aspect DaemonProtocolAspect {
if (index++ < list.length -1) {
filterExpPattern.append("grep -v " + excludeExp + " | ");
} else {
- filterExpPattern.append("grep -vc " + excludeExp);
+ filterExpPattern.append("grep -v " + excludeExp + " | wc -l");
}
}
cmd = new String[] {