Author: todd Date: Tue Aug 14 20:11:31 2012 New Revision: 1373060 URL: http://svn.apache.org/viewvc?rev=1373060&view=rev Log: HDFS-3765. namenode -initializeSharedEdits should be able to initialize all shared storages. Contributed by Vinay and Todd Lipcon.
Modified: hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/ExitUtil.java Modified: hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/ExitUtil.java URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/ExitUtil.java?rev=1373060&r1=1373059&r2=1373060&view=diff ============================================================================== --- hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/ExitUtil.java (original) +++ hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/ExitUtil.java Tue Aug 14 20:11:31 2012 @@ -65,6 +65,15 @@ public final class ExitUtil { } /** + * Reset the tracking of process termination. This is for use + * in unit tests where one test in the suite expects an exit + * but others do not. + */ + public static void resetFirstExitException() { + firstExitException = null; + } + + /** * Terminate the current process. Note that terminate is the *only* method * that should be used to terminate the daemon processes. * @param status exit code @@ -103,4 +112,4 @@ public final class ExitUtil { public static void terminate(int status) throws ExitException { terminate(status, "ExitException"); } -} \ No newline at end of file +}