Skip to content

Commit

Permalink
fix unwrap bool
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-1 committed Jan 12, 2024
1 parent c2b8670 commit 5a775b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/oracle/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ var (
[oracle]
# Enabled specifies whether the side-car oracle needs to be run.
enabled = "{{ .OracleConfig.Enabled }}"
enabled = {{ .OracleConfig.Enabled }}
# Production specifies whether the oracle is running in production mode. This is used to
# determine whether the oracle should be run in debug mode or not.
production = "{{ .OracleConfig.Production }}"
production = {{ .OracleConfig.Production }}
# RemoteAddress is the address of the remote oracle server (if it is running out-of-process)
remote_address = "{{ .OracleConfig.RemoteAddress }}"
Expand All @@ -93,7 +93,7 @@ client_timeout = "{{ .OracleConfig.ClientTimeout }}"
[oracle.metrics]
# Enabled indicates whether app side metrics should be enabled.
enabled = "{{ .OracleConfig.MetricsConfig.Enabled }}"
enabled = {{ .OracleConfig.MetricsConfig.Enabled }}
# PrometheusServerAddress is the address of the prometheus server that the oracle will expose metrics to
prometheus_server_address = "{{ .OracleConfig.MetricsConfig.PrometheusServerAddress }}"
Expand Down

0 comments on commit 5a775b4

Please sign in to comment.