Skip to content

Commit 5bf3be9

Browse files
committed
Possible UI/UX improvements of UTBot Wizard #494
- check presence of SFTP and SARIF plugins - configure SFTP by writing `sftp.conf` - runs SFTP sync for project with server copy Signed-off-by: Alexey Utkin <[email protected]>
1 parent e0c997a commit 5bf3be9

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

vscode-plugin/media/wizardHTML.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,9 @@ function showConnectionFailureStatus(prefix) {
229229
function showPluginStatus(prefix, installed) {
230230
showElement($(prefix + "installed"), installed);
231231
showElement($(prefix + "not_installed"), !installed);
232-
if (!installed)
233-
restartCheckingPlugin(500);
232+
if (!installed) {
233+
restartCheckingPlugin(1000);
234+
}
234235
}
235236

236237
function isPluginInstalledAndMarkValid(prefix) {

vscode-plugin/src/wizard/wizard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export class UtbotWizardPanel {
8383
logger.info(`dbg_message: ${message.message}`);
8484
break;
8585
case 'check_plugins':
86-
logger.info(`check_plugins`);
86+
//logger.info(`check_plugins`);
8787
this.checkPlugins();
8888
break;
8989
default: {

0 commit comments

Comments
 (0)