Remote smoketest timeout (fixes #115159)

This commit is contained in:
Martin Aeschlimann
2021-01-27 15:43:59 +01:00
parent e4022fb0e2
commit 4bd2d367e7
4 changed files with 16 additions and 14 deletions

View File

@@ -103,7 +103,7 @@ export function activate(context: vscode.ExtensionContext) {
if (!serverLocation) {
const serverBin = path.join(remoteDataDir, 'bin');
progress.report({ message: 'Installing VSCode Server' });
serverLocation = await downloadAndUnzipVSCodeServer(updateUrl, commit, quality, serverBin);
serverLocation = await downloadAndUnzipVSCodeServer(updateUrl, commit, quality, serverBin, m => outputChannel.appendLine(m));
}
outputChannel.appendLine(`Using server build at ${serverLocation}`);