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
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