You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -392,7 +392,7 @@ is provided below for reference.
392
392
"soft": "",
393
393
"hard": "unlimited"
394
394
},
395
-
"data_seg_size_kbytes": {
395
+
"data_seg_size_bytes": {
396
396
"soft": "unlimited",
397
397
"hard": "unlimited"
398
398
},
@@ -404,7 +404,7 @@ is provided below for reference.
404
404
"soft": "unlimited",
405
405
"hard": 65536
406
406
},
407
-
"max_memory_size_kbytes": {
407
+
"max_memory_size_bytes": {
408
408
"soft": "unlimited",
409
409
"hard": "unlimited"
410
410
},
@@ -424,7 +424,7 @@ is provided below for reference.
424
424
"soft": "unlimited",
425
425
"hard": 4127290
426
426
},
427
-
"virtual_memory_kbytes": {
427
+
"virtual_memory_bytes": {
428
428
"soft": "unlimited",
429
429
"hard": "unlimited"
430
430
}
@@ -588,6 +588,39 @@ Report version definitions are consistent across LTS releases.
588
588
589
589
### Version history
590
590
591
+
#### Version 5
592
+
593
+
<!-- YAML
594
+
changes:
595
+
- version: REPLACEME
596
+
pr-url: https://github.com/nodejs/node/pull/56068
597
+
description: Fix typos in the memory limit units.
598
+
-->
599
+
600
+
Replace the keys `data_seg_size_kbytes`, `max_memory_size_kbytes` and `virtual_memory_kbytes` with `data_seg_size_bytes`, `max_memory_size_bytes` and `virtual_memory_bytes` respectively in `userLimits` section, as these values are given in bytes.
601
+
602
+
```json
603
+
{
604
+
"userLimits": {
605
+
// Skip some keys ...
606
+
"data_seg_size_kbytes": { // replaced with data_seg_size_bytes
607
+
"soft": "unlimited",
608
+
"hard": "unlimited"
609
+
},
610
+
// ...
611
+
"max_memory_size_kbytes": { // replaced with max_memory_size_bytes
612
+
"soft": "unlimited",
613
+
"hard": "unlimited"
614
+
},
615
+
// ...
616
+
"virtual_memory_kbytes": { // replaced with virtual_memory_bytes
0 commit comments