Remove arc preview setting (#12850)

This commit is contained in:
Charles Gagnon
2020-10-09 10:15:45 -07:00
committed by GitHub
parent 5a49b99b8a
commit ba85d370d6
3 changed files with 0 additions and 14 deletions

View File

@@ -94,11 +94,6 @@
"type": "object",
"title": "Azure",
"properties": {
"azure.enableArcFeatures": {
"type": "boolean",
"default": false,
"description": "%config.enableArcFeatures%"
},
"azure.noSystemKeychain": {
"type": "boolean",
"default": true,

View File

@@ -29,6 +29,5 @@
"config.azureCodeGrantMethod": "Code Grant Method",
"config.azureDeviceCodeMethod": "Device Code Method",
"config.noSystemKeychain": "Disable system keychain integration. Credentials will be stored in a flat file in the user's home directory.",
"config.enableArcFeatures": "Should features related to Azure Arc be enabled (preview)",
"config.piiLogging": "Should Personally Identifiable Information (PII) be logged in the console view locally"
}

View File

@@ -228,14 +228,6 @@ function registerAzureServices(appContext: AppContext): void {
}
async function onDidChangeConfiguration(e: vscode.ConfigurationChangeEvent): Promise<void> {
if (e.affectsConfiguration('azure.enableArcFeatures')) {
const response = await vscode.window.showInformationMessage(loc.requiresReload, loc.reload);
if (response === loc.reload) {
await vscode.commands.executeCommand('workbench.action.reloadWindow');
}
return;
}
if (e.affectsConfiguration('azure.piiLogging')) {
updatePiiLoggingLevel();
}