Skip to content

Commit 8c9dac0

Browse files
committed
Address comment: remove min delay
1 parent e51bbcf commit 8c9dac0

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/utils/setup-status.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -282,10 +282,8 @@ function createLicenseStatusTracker(
282282
"[setup-status.license]",
283283
[LOCALSTACK_AUTH_FILENAME, LICENSE_FILENAME], //TODO rewrite to depend on change in localStackAuthenticationTracker
284284
async () =>
285-
(await minDelay(
286-
activateLicense(outputChannel).then(() =>
287-
checkIsLicenseValid(outputChannel),
288-
),
285+
(await activateLicense(outputChannel).then(() =>
286+
checkIsLicenseValid(outputChannel),
289287
))
290288
? "ok"
291289
: "setup_required",

0 commit comments

Comments
 (0)