From issues-return-158996-archive-asf-public=cust-asf.ponee.io@flink.apache.org Mon Mar 19 16:38:02 2018 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 A12F5180647 for ; Mon, 19 Mar 2018 16:38:01 +0100 (CET) Received: (qmail 3169 invoked by uid 500); 19 Mar 2018 15:38:00 -0000 Mailing-List: contact issues-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list issues@flink.apache.org Received: (qmail 3156 invoked by uid 99); 19 Mar 2018 15:38:00 -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; Mon, 19 Mar 2018 15:38:00 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8E820F17C8; Mon, 19 Mar 2018 15:38:00 +0000 (UTC) From: tillrohrmann To: issues@flink.apache.org Reply-To: issues@flink.apache.org References: In-Reply-To: Subject: [GitHub] flink pull request #5416: [FLINK-8562] [Security] Fix YARNSessionFIFOSecured... Content-Type: text/plain Message-Id: <20180319153800.8E820F17C8@git1-us-west.apache.org> Date: Mon, 19 Mar 2018 15:38:00 +0000 (UTC) Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/5416#discussion_r175480428 --- Diff: flink-yarn-tests/src/test/java/org/apache/flink/yarn/YARNSessionFIFOSecuredITCase.java --- @@ -97,6 +98,15 @@ public static void teardownSecureCluster() throws Exception { SecureTestEnvironment.cleanup(); } + @Override + public void testDetachedMode() throws InterruptedException, IOException { + super.testDetachedMode(); + ensureStringInNamedLogFiles(new String[]{"Login successful for user", "using keytab file"}, --- End diff -- Thanks for the pointer :-) ---