Repository: oozie Updated Branches: refs/heads/master c1cc9f41e -> 6b61d878e
OOZIE-2322 Oozie Web UI doesn't work with Kerberos in Internet Explorer 10 or 11 and curl (rkanter) Project: http://git-wip-us.apache.org/repos/asf/oozie/repo Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/6b61d878 Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/6b61d878 Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/6b61d878 Branch: refs/heads/master Commit: 6b61d878e24653dbce2064a44e03072e8fe1e9f5 Parents: c1cc9f4 Author: Robert Kanter <[email protected]> Authored: Fri Aug 28 13:30:47 2015 -0700 Committer: Robert Kanter <[email protected]> Committed: Fri Aug 28 13:30:47 2015 -0700 ---------------------------------------------------------------------- core/src/main/resources/oozie-default.xml | 2 +- .../java/org/apache/oozie/service/TestConfigurationService.java | 4 +++- release-log.txt | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/oozie/blob/6b61d878/core/src/main/resources/oozie-default.xml ---------------------------------------------------------------------- diff --git a/core/src/main/resources/oozie-default.xml b/core/src/main/resources/oozie-default.xml index b6e41a2..fa7754a 100644 --- a/core/src/main/resources/oozie-default.xml +++ b/core/src/main/resources/oozie-default.xml @@ -2048,7 +2048,7 @@ <property> <name>oozie.authentication.cookie.domain</name> - <value> </value> + <value></value> <description> The domain to use for the HTTP cookie that stores the authentication token. In order to authentiation to work correctly across multiple hosts http://git-wip-us.apache.org/repos/asf/oozie/blob/6b61d878/core/src/test/java/org/apache/oozie/service/TestConfigurationService.java ---------------------------------------------------------------------- diff --git a/core/src/test/java/org/apache/oozie/service/TestConfigurationService.java b/core/src/test/java/org/apache/oozie/service/TestConfigurationService.java index ddb3d58..2153bf1 100644 --- a/core/src/test/java/org/apache/oozie/service/TestConfigurationService.java +++ b/core/src/test/java/org/apache/oozie/service/TestConfigurationService.java @@ -229,7 +229,9 @@ public class TestConfigurationService extends XTestCase { assertEquals("simple", cl.getConf().get(AuthFilter.OOZIE_PREFIX + AuthFilter.AUTH_TYPE)); assertEquals("36000", cl.getConf().get(AuthFilter.OOZIE_PREFIX + AuthFilter.AUTH_TOKEN_VALIDITY)); - assertEquals(" ", cl.getConf().get(AuthFilter.OOZIE_PREFIX + AuthFilter.COOKIE_DOMAIN)); + // The cookie.domain config is in oozie-default.xml mostly for documentation purposes, but it needs to have an empty string + // value by default, which Configuration parses as null + assertNull(cl.getConf().get(AuthFilter.OOZIE_PREFIX + AuthFilter.COOKIE_DOMAIN)); assertEquals("true", cl.getConf().get(AuthFilter.OOZIE_PREFIX + "simple.anonymous.allowed")); assertEquals("HTTP/localhost@LOCALHOST", cl.getConf().get(AuthFilter.OOZIE_PREFIX + "kerberos.principal")); assertEquals(cl.getConf().get(HadoopAccessorService.KERBEROS_KEYTAB), http://git-wip-us.apache.org/repos/asf/oozie/blob/6b61d878/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index 06ee6a8..ce62dc0 100644 --- a/release-log.txt +++ b/release-log.txt @@ -1,5 +1,6 @@ -- Oozie 4.3.0 release (trunk - unreleased) +OOZIE-2322 Oozie Web UI doesn't work with Kerberos in Internet Explorer 10 or 11 and curl (rkanter) OOZIE-2343 Shell Action should take Oozie Action config and setup HADOOP_CONF_DIR (rkanter) OOZIE-2245 Service to periodically check database schema (rkanter) OOZIE-2332 Add ability to provide Hive and Hive 2 Action queries inline in workflows (prateekrungta via rkanter)
