Skip to content

Commit

Permalink
Oximeter producer-kind parameter is now required (#1045)
Browse files Browse the repository at this point in the history
  • Loading branch information
bnaecker authored Nov 30, 2023
1 parent 945f040 commit 2e02507
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crutest/src/stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pub async fn client_oximeter(

let server_info = ProducerEndpoint {
id: Uuid::new_v4(),
kind: Some(ProducerKind::Service),
kind: ProducerKind::Service,
address: my_address,
base_route: "/collect".to_string(),
interval: tokio::time::Duration::from_secs(10),
Expand Down
2 changes: 1 addition & 1 deletion downstairs/src/stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ pub async fn ox_stats(

let server_info = ProducerEndpoint {
id: Uuid::new_v4(),
kind: Some(ProducerKind::Service),
kind: ProducerKind::Service,
address: my_address,
base_route: "/collect".to_string(),
interval: Duration::from_secs(10),
Expand Down

0 comments on commit 2e02507

Please sign in to comment.