File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ import {
1919 LICENSE_FILENAME ,
2020} from "./license.ts" ;
2121import type { UnwrapPromise } from "./promises.ts" ;
22- import { minDelay } from "./promises.ts" ;
2322import { checkSetupStatus } from "./setup.ts" ;
2423import type { TimeTracker } from "./time-tracker.ts" ;
2524
@@ -282,10 +281,8 @@ function createLicenseStatusTracker(
282281 "[setup-status.license]" ,
283282 [ LOCALSTACK_AUTH_FILENAME , LICENSE_FILENAME ] , //TODO rewrite to depend on change in localStackAuthenticationTracker
284283 async ( ) =>
285- ( await minDelay (
286- activateLicense ( outputChannel ) . then ( ( ) =>
287- checkIsLicenseValid ( outputChannel ) ,
288- ) ,
284+ ( await activateLicense ( outputChannel ) . then ( ( ) =>
285+ checkIsLicenseValid ( outputChannel ) ,
289286 ) )
290287 ? "ok"
291288 : "setup_required" ,
You can’t perform that action at this time.
0 commit comments