Skip to content

Commit

Permalink
Fixing the debug namespace wiring
Browse files Browse the repository at this point in the history
  • Loading branch information
otherview committed Aug 31, 2023
1 parent 509d76f commit b585aa3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions go/node/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand All @@ -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
Expand Down

0 comments on commit b585aa3

Please sign in to comment.