We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4aa947 commit b36c33aCopy full SHA for b36c33a
1 file changed
src/utils/setup-status.ts
@@ -107,8 +107,10 @@ export async function createSetupStatusTracker(
107
},
108
async dispose() {
109
clearTimeout(timeout);
110
- await awsProfileTracker.dispose();
111
- await localStackAuthenticationTracker.dispose();
+ await Promise.all([
+ awsProfileTracker.dispose(),
112
+ localStackAuthenticationTracker.dispose(),
113
+ ]);
114
115
};
116
}
0 commit comments