Auto configure memory. (#24474)

This commit is contained in:
Jacob Richman
2026-04-01 20:15:27 -07:00
committed by GitHub
parent 18cdbbf81a
commit 84936dc85d
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -153,7 +153,7 @@ they appear in the UI.
| UI Label | Setting | Description | Default | | UI Label | Setting | Description | Default |
| --------------------------------- | ------------------------------ | --------------------------------------------- | ------- | | --------------------------------- | ------------------------------ | --------------------------------------------- | ------- |
| Auto Configure Max Old Space Size | `advanced.autoConfigureMemory` | Automatically configure Node.js memory limits | `false` | | Auto Configure Max Old Space Size | `advanced.autoConfigureMemory` | Automatically configure Node.js memory limits | `true` |
### Experimental ### Experimental
+1 -1
View File
@@ -1565,7 +1565,7 @@ their corresponding top-level category object in your `settings.json` file.
- **`advanced.autoConfigureMemory`** (boolean): - **`advanced.autoConfigureMemory`** (boolean):
- **Description:** Automatically configure Node.js memory limits - **Description:** Automatically configure Node.js memory limits
- **Default:** `false` - **Default:** `true`
- **Requires restart:** Yes - **Requires restart:** Yes
- **`advanced.dnsResolutionOrder`** (string): - **`advanced.dnsResolutionOrder`** (string):
+1 -1
View File
@@ -1887,7 +1887,7 @@ const SETTINGS_SCHEMA = {
label: 'Auto Configure Max Old Space Size', label: 'Auto Configure Max Old Space Size',
category: 'Advanced', category: 'Advanced',
requiresRestart: true, requiresRestart: true,
default: false, default: true,
description: 'Automatically configure Node.js memory limits', description: 'Automatically configure Node.js memory limits',
showInDialog: true, showInDialog: true,
}, },
+2 -2
View File
@@ -2712,8 +2712,8 @@
"autoConfigureMemory": { "autoConfigureMemory": {
"title": "Auto Configure Max Old Space Size", "title": "Auto Configure Max Old Space Size",
"description": "Automatically configure Node.js memory limits", "description": "Automatically configure Node.js memory limits",
"markdownDescription": "Automatically configure Node.js memory limits\n\n- Category: `Advanced`\n- Requires restart: `yes`\n- Default: `false`", "markdownDescription": "Automatically configure Node.js memory limits\n\n- Category: `Advanced`\n- Requires restart: `yes`\n- Default: `true`",
"default": false, "default": true,
"type": "boolean" "type": "boolean"
}, },
"dnsResolutionOrder": { "dnsResolutionOrder": {