From 68e62f089099a5f99abecb7d269f3a8a721063a3 Mon Sep 17 00:00:00 2001 From: Karthik Nadig Date: Thu, 20 Feb 2020 13:27:39 -0800 Subject: [PATCH 1/2] Switch experiments settings scope to machine --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 28d93dc36a5e..c4b7fbff2891 100644 --- a/package.json +++ b/package.json @@ -1504,7 +1504,7 @@ "type": "boolean", "default": true, "description": "Enables/disables A/B tests.", - "scope": "application" + "scope": "machine" }, "python.experiments.optInto": { "type": "array", @@ -1524,7 +1524,7 @@ ] }, "description": "List of experiment to opt into. If empty, user is assigned the default experiment groups. See https://github.com/microsoft/vscode-python/wiki/Experiments for more details.", - "scope": "application" + "scope": "machine" }, "python.experiments.optOutFrom": { "type": "array", @@ -1544,7 +1544,7 @@ ] }, "description": "List of experiment to opt out of. If empty, user is assigned the default experiment groups. See https://github.com/microsoft/vscode-python/wiki/Experiments for more details.", - "scope": "application" + "scope": "machine" }, "python.dataScience.allowImportFromNotebook": { "type": "boolean", From ac5deea625b9657269d264e736b2d1a9e0221c68 Mon Sep 17 00:00:00 2001 From: Karthik Nadig Date: Thu, 20 Feb 2020 13:30:56 -0800 Subject: [PATCH 2/2] Add news item --- news/2 Fixes/10232.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 news/2 Fixes/10232.md diff --git a/news/2 Fixes/10232.md b/news/2 Fixes/10232.md new file mode 100644 index 000000000000..54d69f4262ba --- /dev/null +++ b/news/2 Fixes/10232.md @@ -0,0 +1 @@ +Users can opt into or opt out of experiments in remote scenarios.