mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Remove arc preview setting (#12850)
This commit is contained in:
@@ -94,11 +94,6 @@
|
|||||||
"type": "object",
|
"type": "object",
|
||||||
"title": "Azure",
|
"title": "Azure",
|
||||||
"properties": {
|
"properties": {
|
||||||
"azure.enableArcFeatures": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": "%config.enableArcFeatures%"
|
|
||||||
},
|
|
||||||
"azure.noSystemKeychain": {
|
"azure.noSystemKeychain": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true,
|
"default": true,
|
||||||
|
|||||||
@@ -29,6 +29,5 @@
|
|||||||
"config.azureCodeGrantMethod": "Code Grant Method",
|
"config.azureCodeGrantMethod": "Code Grant Method",
|
||||||
"config.azureDeviceCodeMethod": "Device Code 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.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"
|
"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> {
|
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')) {
|
if (e.affectsConfiguration('azure.piiLogging')) {
|
||||||
updatePiiLoggingLevel();
|
updatePiiLoggingLevel();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user