Mute tests in SSLConfigurationReloaderTests (#38248)

Specifically `testReloadingTrustStore` and `testReloadingPEMTrustConfig`
This commit is contained in:
Gordon Brown 2019-02-01 21:00:58 -07:00 committed by GitHub
parent 7a1e89c7ed
commit 475a045192
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -193,6 +193,7 @@ public class SSLConfigurationReloaderTests extends ESTestCase {
* Tests the reloading of SSLContext when the trust store is modified. The same store is used as a TrustStore (for the * Tests the reloading of SSLContext when the trust store is modified. The same store is used as a TrustStore (for the
* reloadable SSLContext used in the HTTPClient) and as a KeyStore for the MockWebServer * reloadable SSLContext used in the HTTPClient) and as a KeyStore for the MockWebServer
*/ */
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/38247")
public void testReloadingTrustStore() throws Exception { public void testReloadingTrustStore() throws Exception {
assumeFalse("Can't run in a FIPS JVM", inFipsJvm()); assumeFalse("Can't run in a FIPS JVM", inFipsJvm());
Path tempDir = createTempDir(); Path tempDir = createTempDir();
@ -243,6 +244,7 @@ public class SSLConfigurationReloaderTests extends ESTestCase {
/** /**
* Test the reloading of SSLContext whose trust config is backed by PEM certificate files. * Test the reloading of SSLContext whose trust config is backed by PEM certificate files.
*/ */
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/38247")
public void testReloadingPEMTrustConfig() throws Exception { public void testReloadingPEMTrustConfig() throws Exception {
Path tempDir = createTempDir(); Path tempDir = createTempDir();
Path serverCertPath = tempDir.resolve("testnode.crt"); Path serverCertPath = tempDir.resolve("testnode.crt");