update max_heap_size

This commit is contained in:
boneyard93501 2022-05-18 01:13:57 -05:00
parent 9807a80089
commit 67e6044e0c
3 changed files with 5 additions and 5 deletions

View File

@ -145,7 +145,7 @@ modules_dir = "artifacts" # <-- that's where our Wasm modules are
[[module]]
name = "curl_adapter" # <-- for the curl adapter which we need for the http adapter
mem_pages_count = 100
max_heap_size = "100 KiB"
logger_enabled = true
[module.mounted_binaries]
@ -154,7 +154,7 @@ curl = "/usr/bin/curl" # <-- path to curl on LOCAL machine
[[module]]
name = "ceramic_adapter_custom" <-- for the ceramic adapter we are creating
mem_pages_count = 50
max_heap_size = "50 KiB"
logger_enabled = true
[module.mounted_binaries]

View File

@ -2,7 +2,7 @@ modules_dir = "artifacts"
[[module]]
name = "curl_adapter"
mem_pages_count = 100
max_heap_size = "100 KiB"
logger_enabled = true
[module.mounted_binaries]
@ -10,7 +10,7 @@ curl = "/usr/bin/curl"
[[module]]
name = "ceramic_adapter_custom"
mem_pages_count = 50
max_heap_size = "50 Kib"
logger_enabled = true
[module.mounted_binaries]

View File

@ -3,6 +3,6 @@
"mountedBinaries": {
"ceramic": "/usr/bin/ceramic"
},
"mem_page_count": 100,
"max_heap_size": "100 KiB",
"logger_enabled": true
}