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 1210A200D06 for ; Mon, 25 Sep 2017 20:20:27 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 10B5B1609BB; Mon, 25 Sep 2017 18:20:27 +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 567B61609B5 for ; Mon, 25 Sep 2017 20:20:26 +0200 (CEST) Received: (qmail 98936 invoked by uid 500); 25 Sep 2017 18:20:25 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 98927 invoked by uid 99); 25 Sep 2017 18:20:25 -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; Mon, 25 Sep 2017 18:20:25 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 8204A81170; Mon, 25 Sep 2017 18:20:24 +0000 (UTC) Date: Mon, 25 Sep 2017 18:20:24 +0000 To: "commits@geode.apache.org" Subject: [geode] branch develop updated: GEODE-3692: Add Flaky tag to intemittent test failure MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <150636362440.14441.17866957231273225013@gitbox.apache.org> From: khowe@apache.org Reply-To: "commits@geode.apache.org" X-Git-Host: gitbox.apache.org X-Git-Repo: geode X-Git-Refname: refs/heads/develop X-Git-Reftype: branch X-Git-Oldrev: adcd2e9b649c44f4307f60c12e7f25a4bbd9c63f X-Git-Newrev: 8dd29920193f91140b499d35ee9681bd3e3aa90e X-Git-Rev: 8dd29920193f91140b499d35ee9681bd3e3aa90e X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated archived-at: Mon, 25 Sep 2017 18:20:27 -0000 This is an automated email from the ASF dual-hosted git repository. khowe pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/geode.git The following commit(s) were added to refs/heads/develop by this push: new 8dd2992 GEODE-3692: Add Flaky tag to intemittent test failure 8dd2992 is described below commit 8dd29920193f91140b499d35ee9681bd3e3aa90e Author: Ken Howe AuthorDate: Mon Sep 25 10:43:07 2017 -0700 GEODE-3692: Add Flaky tag to intemittent test failure --- .../src/test/java/org/apache/geode/security/ClientAuthDUnitTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/geode-core/src/test/java/org/apache/geode/security/ClientAuthDUnitTest.java b/geode-core/src/test/java/org/apache/geode/security/ClientAuthDUnitTest.java index d7acf79..22f04de 100644 --- a/geode-core/src/test/java/org/apache/geode/security/ClientAuthDUnitTest.java +++ b/geode-core/src/test/java/org/apache/geode/security/ClientAuthDUnitTest.java @@ -23,6 +23,7 @@ import org.apache.geode.test.dunit.VM; import org.apache.geode.test.dunit.internal.JUnit4DistributedTestCase; import org.apache.geode.test.dunit.rules.ServerStarterRule; import org.apache.geode.test.junit.categories.DistributedTest; +import org.apache.geode.test.junit.categories.FlakyTest; import org.apache.geode.test.junit.categories.SecurityTest; import org.junit.Rule; import org.junit.Test; @@ -39,6 +40,7 @@ public class ClientAuthDUnitTest extends JUnit4DistributedTestCase { public ServerStarterRule server = new ServerStarterRule() .withProperty(SECURITY_MANAGER, SimpleTestSecurityManager.class.getName()).withAutoStart(); + @Category(FlakyTest.class) // GEODE-3692 - Intermittent test failure on nightly builds @Test public void authWithCorrectPasswordShouldPass() { client1.invoke("logging in super-user with correct password", () -> { -- To stop receiving notification emails like this one, please contact ['"commits@geode.apache.org" '].