From 7691b90863ad39bb8e8e8c62263ffff07b6b19be Mon Sep 17 00:00:00 2001 From: Tim Roes Date: Wed, 9 Nov 2022 10:10:28 +0100 Subject: [PATCH] Increase LaunchDarkly initialization timeout --- .../services/thirdParty/launchdarkly/LDExperimentService.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airbyte-webapp/src/packages/cloud/services/thirdParty/launchdarkly/LDExperimentService.tsx b/airbyte-webapp/src/packages/cloud/services/thirdParty/launchdarkly/LDExperimentService.tsx index 2aa21ae45452..0e507781c55e 100644 --- a/airbyte-webapp/src/packages/cloud/services/thirdParty/launchdarkly/LDExperimentService.tsx +++ b/airbyte-webapp/src/packages/cloud/services/thirdParty/launchdarkly/LDExperimentService.tsx @@ -20,7 +20,7 @@ import { rejectAfter } from "utils/promises"; * The maximum time in milliseconds we'll wait for LaunchDarkly to finish initialization, * before running disabling it. */ -const INITIALIZATION_TIMEOUT = 1500; +const INITIALIZATION_TIMEOUT = 5000; const FEATURE_FLAG_EXPERIMENT = "featureService.overwrites";