We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1c46b8 commit 655a059Copy full SHA for 655a059
lib/optimizely/index.ts
@@ -247,10 +247,8 @@ export default class Optimizely extends BaseService implements Client {
247
this.eventProcessor?.start();
248
this.odpManager?.start();
249
250
- const configManOnRunning = this.projectConfigManager.onRunning();
251
-
252
Promise.all([
253
- configManOnRunning,
+ this.projectConfigManager.onRunning(),
254
this.eventProcessor ? this.eventProcessor.onRunning() : Promise.resolve(),
255
this.odpManager ? this.odpManager.onRunning() : Promise.resolve(),
256
this.vuidManager ? this.vuidManager.initialize() : Promise.resolve(),
0 commit comments