From 1682d4570d8b8a0f4376b100e3cdb2dc7abd276f Mon Sep 17 00:00:00 2001 From: Kashif Faraz Date: Sun, 17 Mar 2024 14:47:42 +0530 Subject: [PATCH] Increase delay to allow propagation of credentials (#16143) --- .../druid/tests/security/ITBasicAuthConfigurationTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/src/test/java/org/apache/druid/tests/security/ITBasicAuthConfigurationTest.java b/integration-tests/src/test/java/org/apache/druid/tests/security/ITBasicAuthConfigurationTest.java index ea8e61ef317..a287843a8f7 100644 --- a/integration-tests/src/test/java/org/apache/druid/tests/security/ITBasicAuthConfigurationTest.java +++ b/integration-tests/src/test/java/org/apache/druid/tests/security/ITBasicAuthConfigurationTest.java @@ -85,7 +85,7 @@ public class ITBasicAuthConfigurationTest extends AbstractAuthConfigurationTest // Add a large enough delay to allow propagation of credentials to all services. It'd be ideal // to have a "readiness" endpoint exposed by different services that'd return the version of auth creds cached. try { - Thread.sleep(10000); + Thread.sleep(20000); } catch (InterruptedException e) { // Ignore exception