Repository: incubator-impala Updated Branches: refs/heads/master ab287955d -> 5c8ed4fd4
IMPALA-5686: Update a mini cluster Sentry property The property "sentry.service.client.server.rpc-address" was recently updated to "sentry.service.client.server.rpc-addresses", and as a result, the mini cluster fails to start. We fix the problem by adding the new property to the sentry-site.xml template file. The old property is temporarily kept as a precaution. Change-Id: I486c1ab33277f4e795be9dbbefb8d839354bf6bb Reviewed-on: http://gerrit.cloudera.org:8080/7469 Reviewed-by: Taras Bobrovytsky <[email protected]> Tested-by: Impala Public Jenkins Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/5c8ed4fd Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/5c8ed4fd Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/5c8ed4fd Branch: refs/heads/master Commit: 5c8ed4fd4366a8a39953abcaa31eb0d550af9d0b Parents: ab28795 Author: Taras Bobrovytsky <[email protected]> Authored: Wed Jul 19 16:34:11 2017 -0700 Committer: Impala Public Jenkins <[email protected]> Committed: Thu Jul 20 05:39:21 2017 +0000 ---------------------------------------------------------------------- fe/src/test/resources/sentry-site.xml.template | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/5c8ed4fd/fe/src/test/resources/sentry-site.xml.template ---------------------------------------------------------------------- diff --git a/fe/src/test/resources/sentry-site.xml.template b/fe/src/test/resources/sentry-site.xml.template index 94ae8a2..b569c5f 100644 --- a/fe/src/test/resources/sentry-site.xml.template +++ b/fe/src/test/resources/sentry-site.xml.template @@ -39,6 +39,13 @@ <value>localhost</value> </property> <property> +<!-- + TODO(IMPALA-5686): Remove this or the previous property when Sentry standardizes on one. +--> + <name>sentry.service.client.server.rpc-addresses</name> + <value>localhost</value> +</property> +<property> <name>sentry.service.client.server.rpc-port</name> <value>30911</value> </property>
