Skip to content

Commit f932641

Browse files
authored
fix: remove 5 seconds extra wait when configuring registry (#74)
Signed-off-by: Denis Golovin <[email protected]>
1 parent 23a9b5d commit f932641

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/extension.ts

-4
Original file line numberDiff line numberDiff line change
@@ -266,11 +266,7 @@ export async function activate(extensionContext: extensionApi.ExtensionContext):
266266
async (progress) => {
267267
// Checking if registry account for https://registry.redhat.io is already configured
268268
if (!isRedHatRegistryConfigured()) {
269-
// Logging into Red Hat Developer account using Red Hat SSO
270269
progress.report({ increment: 30 });
271-
await new Promise(resolve => setTimeout(resolve,5000));
272-
// Configuring registry account for https://registry.redhat.io
273-
progress.report({ increment: 60 });
274270
await createOrReuseRegistryServiceAccount();
275271
}
276272
}

0 commit comments

Comments
 (0)