Repository: incubator-sentry Updated Branches: refs/heads/master 6c7c5f6d1 -> 0263cd4a5
SENTRY-914: Sentry default webserver port needs to change out of ephemeral port range. (Dapeng Sun, reviewed by Lenni Kuff and Guoquan Shen) Project: http://git-wip-us.apache.org/repos/asf/incubator-sentry/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-sentry/commit/0263cd4a Tree: http://git-wip-us.apache.org/repos/asf/incubator-sentry/tree/0263cd4a Diff: http://git-wip-us.apache.org/repos/asf/incubator-sentry/diff/0263cd4a Branch: refs/heads/master Commit: 0263cd4a53638974110053804340704431354e33 Parents: 6c7c5f6 Author: Sun Dapeng <[email protected]> Authored: Thu Oct 22 09:56:05 2015 +0800 Committer: Sun Dapeng <[email protected]> Committed: Thu Oct 22 09:56:05 2015 +0800 ---------------------------------------------------------------------- .../java/org/apache/sentry/service/thrift/ServiceConstants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-sentry/blob/0263cd4a/sentry-provider/sentry-provider-db/src/main/java/org/apache/sentry/service/thrift/ServiceConstants.java ---------------------------------------------------------------------- diff --git a/sentry-provider/sentry-provider-db/src/main/java/org/apache/sentry/service/thrift/ServiceConstants.java b/sentry-provider/sentry-provider-db/src/main/java/org/apache/sentry/service/thrift/ServiceConstants.java index e23e9d7..d8afbae 100644 --- a/sentry-provider/sentry-provider-db/src/main/java/org/apache/sentry/service/thrift/ServiceConstants.java +++ b/sentry-provider/sentry-provider-db/src/main/java/org/apache/sentry/service/thrift/ServiceConstants.java @@ -154,7 +154,7 @@ public class ServiceConstants { public static final String SENTRY_WEB_ENABLE = "sentry.service.web.enable"; public static final Boolean SENTRY_WEB_ENABLE_DEFAULT = false; public static final String SENTRY_WEB_PORT = "sentry.service.web.port"; - public static final int SENTRY_WEB_PORT_DEFAULT = 51000; + public static final int SENTRY_WEB_PORT_DEFAULT = 29000; public static final String SENTRY_REPORTER = "sentry.service.reporter"; public static final String SENTRY_REPORTER_JMX = SentryMetrics.Reporting.JMX.name(); //case insensitive public static final String SENTRY_REPORTER_CONSOLE = SentryMetrics.Reporting.CONSOLE.name();//case insensitive
