* Remove restart prompt on schema change
This commit is contained in:
Winston Liu 2021-01-20 11:50:53 -05:00 коммит произвёл GitHub
Родитель e8ddce4dc8
Коммит 0d5bc9f896
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 4 удалений

Просмотреть файл

@ -91,10 +91,6 @@ async function activateYmlContributor(context: vscode.ExtensionContext) {
if (event.affectsConfiguration('[azure-pipelines].customSchemaFile')) {
schemaAssociationService.locateSchemaFile();
const newSchema = schemaAssociationService.getSchemaAssociation();
vscode.window.showInformationMessage("Azure Pipelines schema changed. Restart VS Code to see the changes.");
// this _should_ cause the language server to refresh its config
// but that doesn't seem to be happening
client.sendNotification(SchemaAssociationNotification.type, newSchema);
}
});