You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/ensemble/lib/ensemble.dart
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,7 @@ class Ensemble extends WithEnsemble with EnsembleRouteObserver {
106
106
try {
107
107
// this code block is guaranteed to run at most once
108
108
awaitStorageManager().init();
109
+
awaitSecretsStore().initialize();
109
110
Device().initDeviceInfo();
110
111
AppInfo().initPackageInfo(_config);
111
112
_completer!.complete();
@@ -139,9 +140,10 @@ class Ensemble extends WithEnsemble with EnsembleRouteObserver {
139
140
if (_config !=null) {
140
141
returnFuture<EnsembleConfig>.value(_config);
141
142
}
142
-
// Intialize the config service to get `ensemble-config.yaml` file to access the configuration using static property as `EnsembleConfigService.config`
143
-
awaitEnsembleConfigService.initialize();
144
-
awaitSecretsStore().initialize();
143
+
// Initialize the config service to get `ensemble-config.yaml` file to access the configuration using static property as `EnsembleConfigService.config`
0 commit comments