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 7B669200BAA for ; Thu, 22 Sep 2016 02:47:52 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 7A2F4160ADB; Thu, 22 Sep 2016 00:47:52 +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 D0B09160AE3 for ; Thu, 22 Sep 2016 02:47:51 +0200 (CEST) Received: (qmail 64866 invoked by uid 500); 22 Sep 2016 00:47:48 -0000 Mailing-List: contact common-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list common-commits@hadoop.apache.org Received: (qmail 64292 invoked by uid 99); 22 Sep 2016 00:47:47 -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, 22 Sep 2016 00:47:47 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9A351E0158; Thu, 22 Sep 2016 00:47:47 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: drankye@apache.org To: common-commits@hadoop.apache.org Date: Thu, 22 Sep 2016 00:47:53 -0000 Message-Id: <9145dfaae3b24f3cbe545f81e9aef66f@git.apache.org> In-Reply-To: <170e596fa9ba4e98a62372582541122c@git.apache.org> References: <170e596fa9ba4e98a62372582541122c@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [07/13] hadoop git commit: HADOOP-13601. Fix a log message typo in AbstractDelegationTokenSecretManager. Contributed by Mehran Hassani. archived-at: Thu, 22 Sep 2016 00:47:52 -0000 HADOOP-13601. Fix a log message typo in AbstractDelegationTokenSecretManager. Contributed by Mehran Hassani. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/e80386d6 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/e80386d6 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/e80386d6 Branch: refs/heads/HADOOP-12756 Commit: e80386d69d5fb6a08aa3366e42d2518747af569f Parents: 9f03b40 Author: Mingliang Liu Authored: Tue Sep 20 13:19:44 2016 -0700 Committer: Mingliang Liu Committed: Tue Sep 20 13:20:01 2016 -0700 ---------------------------------------------------------------------- .../token/delegation/AbstractDelegationTokenSecretManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/e80386d6/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/delegation/AbstractDelegationTokenSecretManager.java ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/delegation/AbstractDelegationTokenSecretManager.java b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/delegation/AbstractDelegationTokenSecretManager.java index 1d7f2f5..cc2efc9 100644 --- a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/delegation/AbstractDelegationTokenSecretManager.java +++ b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/delegation/AbstractDelegationTokenSecretManager.java @@ -528,7 +528,7 @@ extends AbstractDelegationTokenIdentifier> DataInputStream in = new DataInputStream(buf); TokenIdent id = createIdentifier(); id.readFields(in); - LOG.info("Token cancelation requested for identifier: "+id); + LOG.info("Token cancellation requested for identifier: " + id); if (id.getUser() == null) { throw new InvalidToken("Token with no owner"); --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-commits-help@hadoop.apache.org