From 044d192df0de6368e53834fca295a4500a4a150e Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Tue, 10 Jul 2018 18:15:09 +0200 Subject: [PATCH] remove bad timeout --- extensions/git/src/main.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/extensions/git/src/main.ts b/extensions/git/src/main.ts index 9b1d988c842..6eae1da2c9d 100644 --- a/extensions/git/src/main.ts +++ b/extensions/git/src/main.ts @@ -81,8 +81,6 @@ export async function activate(context: ExtensionContext): Promise { const telemetryReporter = new TelemetryReporter(name, version, aiKey); deactivateTasks.push(() => telemetryReporter.dispose()); - await new Promise(c => setTimeout(c, 10000)); - const config = workspace.getConfiguration('git', null); const enabled = config.get('enabled');