From cd7b978d26bcaafdf0459b1ca0c8b9434d4603bf Mon Sep 17 00:00:00 2001 From: boneyard93501 Date: Fri, 8 Jul 2022 10:10:05 +0000 Subject: [PATCH] GitBook: [#143] reflecting the deployment config changes (removed redundant square brackets) --- aqua-cli/service-management.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/aqua-cli/service-management.md b/aqua-cli/service-management.md index 2cacb29..11bd9b6 100644 --- a/aqua-cli/service-management.md +++ b/aqua-cli/service-management.md @@ -26,16 +26,16 @@ Consider the following service configuration JSON template: "name": "module_name", "path": "/path/to/wasm", "mounted_binaries": [["command_line_tool", "/path/to/command_line_tool"]], - "logger_enabled": [true] + "logger_enabled": true }, { "name": "second_module_name", "path": "path/to/second_module.wasm", - "logger_enabled": [true], + "logger_enabled": true, "mapped_dirs": [["/path/to/dir"]], - "preopened_files": [["/path/to/file"]], + "preopened_files": ["/path/to/file"], "envs": [["env1", "env2"]], - "max_heap_size": ["100Mb"] + "max_heap_size": "100Mb" } ] }, @@ -44,7 +44,7 @@ Consider the following service configuration JSON template: { "name": "third_module", "path": "./artifacts/mean_service.wasm", - "logger_enabled": [true] + "logger_enabled": true } ] }