mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Remove arc preview setting (#12850)
This commit is contained in:
@@ -94,11 +94,6 @@
|
||||
"type": "object",
|
||||
"title": "Azure",
|
||||
"properties": {
|
||||
"azure.enableArcFeatures": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "%config.enableArcFeatures%"
|
||||
},
|
||||
"azure.noSystemKeychain": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user