From b585aa38c9003cfbad07585f9a81775e02cc7ff7 Mon Sep 17 00:00:00 2001 From: otherview Date: Thu, 31 Aug 2023 14:31:58 +0100 Subject: [PATCH] Fixing the debug namespace wiring --- go/node/config.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/go/node/config.go b/go/node/config.go index ffcc24b70d..f14195ac07 100644 --- a/go/node/config.go +++ b/go/node/config.go @@ -73,6 +73,7 @@ func (c *Config) ToEnclaveConfig() *config.EnclaveConfig { cfg.LogPath = testlog.LogFile() cfg.LogLevel = c.logLevel cfg.Address = fmt.Sprintf("%s:%d", _localhost, c.enclaveWSPort) + cfg.DebugNamespaceEnabled = c.debugNamespaceEnabled return cfg } @@ -99,6 +100,7 @@ func (c *Config) ToHostConfig() *config.HostInputConfig { cfg.LogPath = testlog.LogFile() cfg.ProfilerEnabled = c.profilerEnabled cfg.MetricsEnabled = false + cfg.DebugNamespaceEnabled = c.debugNamespaceEnabled cfg.LogLevel = c.logLevel return cfg