Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 704CE200BE3 for ; Thu, 8 Dec 2016 01:45:19 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 6EF30160B26; Thu, 8 Dec 2016 00:45:19 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id B7A11160B0C for ; Thu, 8 Dec 2016 01:45:18 +0100 (CET) Received: (qmail 24981 invoked by uid 500); 8 Dec 2016 00:45:17 -0000 Mailing-List: contact commits-help@kudu.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kudu.apache.org Delivered-To: mailing list commits@kudu.apache.org Received: (qmail 24972 invoked by uid 99); 8 Dec 2016 00:45:17 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Dec 2016 00:45:17 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C0401DFF56; Thu, 8 Dec 2016 00:45:17 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: danburkert@apache.org To: commits@kudu.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: kudu git commit: Enable rhel6 krb5 realm workaround for Java tests Date: Thu, 8 Dec 2016 00:45:17 +0000 (UTC) archived-at: Thu, 08 Dec 2016 00:45:19 -0000 Repository: kudu Updated Branches: refs/heads/master e16a541ae -> b61bd02be Enable rhel6 krb5 realm workaround for Java tests See b1d02ee1a6b45745df9668af52 for details. Change-Id: I09df4685987ecc749dffaef92b281c2943e19a98 Reviewed-on: http://gerrit.cloudera.org:8080/5408 Reviewed-by: Todd Lipcon Tested-by: Kudu Jenkins Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/b61bd02b Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/b61bd02b Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/b61bd02b Branch: refs/heads/master Commit: b61bd02beb6c286e086a14bb1e3abe487fde81f7 Parents: e16a541 Author: Dan Burkert Authored: Wed Dec 7 16:01:11 2016 -0800 Committer: Dan Burkert Committed: Thu Dec 8 00:45:08 2016 +0000 ---------------------------------------------------------------------- .../kudu-client/src/test/java/org/apache/kudu/client/MiniKdc.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/b61bd02b/java/kudu-client/src/test/java/org/apache/kudu/client/MiniKdc.java ---------------------------------------------------------------------- diff --git a/java/kudu-client/src/test/java/org/apache/kudu/client/MiniKdc.java b/java/kudu-client/src/test/java/org/apache/kudu/client/MiniKdc.java index 1e3538c..9d6916a 100644 --- a/java/kudu-client/src/test/java/org/apache/kudu/client/MiniKdc.java +++ b/java/kudu-client/src/test/java/org/apache/kudu/client/MiniKdc.java @@ -318,7 +318,8 @@ public class MiniKdc implements Closeable { return ImmutableMap.of( "KRB5_CONFIG", options.dataRoot.resolve("krb5.conf").toString(), "KRB5_KDC_PROFILE", options.dataRoot.resolve("kdc.conf").toString(), - "KRB5CCNAME", options.dataRoot.resolve("krb5cc").toString() + "KRB5CCNAME", options.dataRoot.resolve("krb5cc").toString(), + "KUDU_ENABLE_KRB5_REALM_FIX", "yes" ); }