Skip to content

Commit

Permalink
correct values.yaml
Browse files Browse the repository at this point in the history
Signed-off-by: Lance-Drane <[email protected]>
  • Loading branch information
Lance-Drane committed Aug 12, 2024
1 parent 523860b commit b492f05
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/broker-2-http/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ serviceAccount:
### application stuff

app:
logLevel: "info"
log_level: "info"
topic_prefix: "" # http-2-broker only, i.e. "organization.facility.system", you should consciously set this value
username: "" # needed credential for clients calling HTTP endpoints other than /healthcheck
password: "" # needed credential for clients calling HTTP endpoints other than /healthcheck
Expand Down
2 changes: 1 addition & 1 deletion charts/http-2-broker/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ serviceAccount:
### application stuff

app:
logLevel: "info"
log_level: "info"
other_proxy:
url: "" # this should be the complete URL
username: "" # needed credential for clients calling HTTP endpoints other than /healthcheck
Expand Down
1 change: 1 addition & 0 deletions http-2-broker/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ pub async fn main() {
if exchange_result.is_err() {
let err = exchange_result.unwrap_err();
tracing::error!("could not create exchange: {}", err);
connection.close().await.expect("Could not close connection after failed exchange creation");
std::process::exit(1);
}
}
Expand Down

0 comments on commit b492f05

Please sign in to comment.