From 197bcee583698b2b7f94ffdfc5c234b59588061d Mon Sep 17 00:00:00 2001 From: Yogesh Gaikwad Date: Tue, 22 Jan 2019 11:14:46 +1100 Subject: [PATCH] Removes awaits fix as the fix is in. The PR for the fix has been merged. https://github.com/elastic/elasticsearch/pull/37661 but the awaits fix annotation was not removed. --- .../xpack/security/authz/store/CompositeRolesStoreTests.java | 1 - 1 file changed, 1 deletion(-) diff --git a/x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/security/authz/store/CompositeRolesStoreTests.java b/x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/security/authz/store/CompositeRolesStoreTests.java index 46485d466971f..2d78a8c946772 100644 --- a/x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/security/authz/store/CompositeRolesStoreTests.java +++ b/x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/security/authz/store/CompositeRolesStoreTests.java @@ -212,7 +212,6 @@ reservedRolesStore, mock(NativePrivilegeStore.class), Collections.emptyList(), assertNotEquals(Role.EMPTY, roleFuture.actionGet()); } - @AwaitsFix(bugUrl="https://github.com/elastic/elasticsearch/issues/37657") public void testNegativeLookupsAreCached() { final FileRolesStore fileRolesStore = mock(FileRolesStore.class); doCallRealMethod().when(fileRolesStore).accept(any(Set.class), any(ActionListener.class));