Author: tucu
Date: Thu Jun 13 22:45:47 2013
New Revision: 1492891
URL: http://svn.apache.org/r1492891
Log:
OOZIE-1349 oozieCLI -Doozie.auth.token.cache doesn't work (bowenzhangusa via
tucu)
Modified:
oozie/trunk/client/src/main/java/org/apache/oozie/cli/OozieCLI.java
oozie/trunk/release-log.txt
Modified: oozie/trunk/client/src/main/java/org/apache/oozie/cli/OozieCLI.java
URL:
http://svn.apache.org/viewvc/oozie/trunk/client/src/main/java/org/apache/oozie/cli/OozieCLI.java?rev=1492891&r1=1492890&r2=1492891&view=diff
==============================================================================
--- oozie/trunk/client/src/main/java/org/apache/oozie/cli/OozieCLI.java
(original)
+++ oozie/trunk/client/src/main/java/org/apache/oozie/cli/OozieCLI.java Thu Jun
13 22:45:47 2013
@@ -178,7 +178,7 @@ public class OozieCLI {
* @param args options and arguments for the Oozie CLI.
*/
public static void main(String[] args) {
- if
(!System.getProperties().contains(AuthOozieClient.USE_AUTH_TOKEN_CACHE_SYS_PROP))
{
+ if
(!System.getProperties().containsKey(AuthOozieClient.USE_AUTH_TOKEN_CACHE_SYS_PROP))
{
System.setProperty(AuthOozieClient.USE_AUTH_TOKEN_CACHE_SYS_PROP,
"true");
}
System.exit(new OozieCLI().run(args));
Modified: oozie/trunk/release-log.txt
URL:
http://svn.apache.org/viewvc/oozie/trunk/release-log.txt?rev=1492891&r1=1492890&r2=1492891&view=diff
==============================================================================
--- oozie/trunk/release-log.txt (original)
+++ oozie/trunk/release-log.txt Thu Jun 13 22:45:47 2013
@@ -1,5 +1,6 @@
-- Oozie 4.1.0 release (trunk - unreleased)
+OOZIE-1349 oozieCLI -Doozie.auth.token.cache doesn't work (bowenzhangusa via
tucu)
OOZIE-1398 Reduce the number of CLOB columns used (ryota)
OOZIE-1374 Make all unit tests run with Hadoop 2 (rohini)
OOZIE-1394 Fix Bugs in Job and SLA Events (mona)