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 fc13b7a commit a81ed32Copy full SHA for a81ed32
redisinsight/api/src/modules/init/local.init.service.ts
@@ -32,7 +32,9 @@ export class LocalInitService extends InitService {
32
await this.initAnalytics(firstStart);
33
await this.featureService.recalculateFeatureFlags(sessionMetadata);
34
await this.redisClientFactory.init();
35
- await this.databaseDiscoveryService.discover(sessionMetadata, firstStart);
+ process.nextTick(async () => {
36
+ await this.databaseDiscoveryService.discover(sessionMetadata, firstStart);
37
+ });
38
}
39
40
async initAnalytics(firstStart: boolean) {
0 commit comments