Skip to content

Commit b36c33a

Browse files
committed
perf
1 parent d4aa947 commit b36c33a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/utils/setup-status.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,10 @@ export async function createSetupStatusTracker(
107107
},
108108
async dispose() {
109109
clearTimeout(timeout);
110-
await awsProfileTracker.dispose();
111-
await localStackAuthenticationTracker.dispose();
110+
await Promise.all([
111+
awsProfileTracker.dispose(),
112+
localStackAuthenticationTracker.dispose(),
113+
]);
112114
},
113115
};
114116
}

0 commit comments

Comments
 (0)