Skip to content

Commit

Permalink
Clarify wording
Browse files Browse the repository at this point in the history
  • Loading branch information
lablans committed Jun 5, 2023
1 parent 23c9c2b commit d489f3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "beamctl"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
repository = "https://github.com/samply/beamctl"
documentation = "https://github.com/samply/beamctl"
Expand Down
2 changes: 1 addition & 1 deletion src/proxy_health.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub async fn query_proxy_health(proxy_name: &str, api_key: &str, broker_url: &Ur
let last_report_dur = status.last_active.elapsed().unwrap();
let minutes = last_report_dur.as_secs() / 60;
let seconds = last_report_dur.as_secs() % 60;
println!("Proxy reported back {minutes}m and {seconds}s ago!");
println!("Beam.Proxy reported back {minutes}m and {seconds}s ago!");
exit(0);
},
unexpectd => {
Expand Down

0 comments on commit d489f3d

Please sign in to comment.