From common-issues-return-166309-archive-asf-public=cust-asf.ponee.io@hadoop.apache.org Fri Mar 1 06:00:54 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 7736A180676 for ; Fri, 1 Mar 2019 07:00:53 +0100 (CET) Received: (qmail 49253 invoked by uid 500); 1 Mar 2019 06:00:52 -0000 Mailing-List: contact common-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list common-issues@hadoop.apache.org Received: (qmail 49228 invoked by uid 99); 1 Mar 2019 06:00:52 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Mar 2019 06:00:52 +0000 From: GitBox To: common-issues@hadoop.apache.org Subject: =?utf-8?q?=5BGitHub=5D_xiaoyuyao_commented_on_a_change_in_pull_request_?= =?utf-8?q?=23526=3A_HDDS-1183=2E_Override_getDelegationToken_API_for_Ozon?= =?utf-8?b?ZUZpbGVTeXN0ZW0uIENvbnRy4oCm?= Message-ID: <155142005141.25046.1765255710220985489.gitbox@gitbox.apache.org> Date: Fri, 01 Mar 2019 06:00:51 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit xiaoyuyao commented on a change in pull request #526: HDDS-1183. Override getDelegationToken API for OzoneFileSystem. Contr… URL: https://github.com/apache/hadoop/pull/526#discussion_r261487247 ########## File path: hadoop-ozone/ozonefs/src/main/java/org/apache/hadoop/fs/ozone/OzoneFileSystem.java ########## @@ -669,6 +676,12 @@ public Path getWorkingDirectory() { return workingDir; } + @Override + public Token getDelegationToken(String renewer) throws IOException { + return securityEnabled? adapter.getDelegationToken(renewer) : + super.getDelegationToken(renewer); Review comment: This will be added after HDDS-134. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: users@infra.apache.org With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: common-issues-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-issues-help@hadoop.apache.org