From b8649712b89ed827645edafc57f8f58fa38ce849 Mon Sep 17 00:00:00 2001 From: Kasper Ziemianek Date: Fri, 7 Feb 2025 12:04:01 +0100 Subject: [PATCH] Parametrize sgx.debug --- tee-worker/omni-executor/omni-executor.manifest.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tee-worker/omni-executor/omni-executor.manifest.template b/tee-worker/omni-executor/omni-executor.manifest.template index 24e867ed0d..1f9c38bf22 100644 --- a/tee-worker/omni-executor/omni-executor.manifest.template +++ b/tee-worker/omni-executor/omni-executor.manifest.template @@ -24,7 +24,7 @@ fs.mounts = [ { path = "/storage_db", uri = "file:storage_db" }, ] -sgx.debug = true +sgx.debug = {{ 'true' if env.get('SGX_DEBUG', '0') == '1' else 'false' }} sgx.edmm_enable = {{ 'true' if env.get('EDMM', '0') == '1' else 'false' }}