Skip to content

Commit

Permalink
fix(sidecar/config): missing field in Debug impl
Browse files Browse the repository at this point in the history
  • Loading branch information
thedevbirb committed Nov 8, 2024
1 parent c2106e2 commit 1e5f4f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions bolt-sidecar/src/config/constraint_signing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ impl fmt::Debug for ConstraintSigningOpts {
.field("keystore_password", &"********") // Hides the actual password
.field("keystore_path", &self.keystore_path)
.field("keystore_secrets_path", &self.keystore_secrets_path)
.field("delegations_path", &self.delegations_path)
.finish()
}
}
2 changes: 1 addition & 1 deletion bolt-sidecar/src/telemetry/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub fn init_telemetry_stack(metrics_port: Option<u16>) -> Result<()> {
let builder = PrometheusBuilder::new().with_http_listener(prometheus_addr);

if let Err(e) = builder.install() {
bail!("failed to install Prometheus recorder: {:?}", e);
bail!("failed to init telemetry stack. Error installing Prometheus recorder: {:?}", e);
} else {
info!(
"Telemetry initialized. Serving Prometheus metrics at: http://{}",
Expand Down

0 comments on commit 1e5f4f2

Please sign in to comment.