Skip to content

Commit

Permalink
compilation passes
Browse files Browse the repository at this point in the history
Signed-off-by: Brian L. Troutwine <[email protected]>
  • Loading branch information
blt committed Dec 27, 2024
1 parent ff1d9d9 commit dd8105a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 33 deletions.
30 changes: 1 addition & 29 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 lading/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ tokio = { workspace = true, features = [
] }
tokio-stream = { version = "0.1", features = ["io-util"] }
tokio-util = { version = "0.7", features = ["io"] }
tonic = { version = "0.9" }
tonic = { version = "0.12" }
tower = { workspace = true, features = [
"timeout",
"limit",
Expand Down
2 changes: 1 addition & 1 deletion lading/src/blackhole/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ impl Http {
pin!(shutdown);
loop {
tokio::select! {
_ = &mut shutdown => {
() = &mut shutdown => {
info!("shutdown signal received");
break;
}
Expand Down
2 changes: 1 addition & 1 deletion lading/src/blackhole/splunk_hec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ impl SplunkHec {
pin!(shutdown);
loop {
tokio::select! {
_ = &mut shutdown => {
() = &mut shutdown => {
info!("shutdown signal received");
break;
}
Expand Down
2 changes: 1 addition & 1 deletion lading/src/blackhole/sqs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ impl Sqs {
pin!(shutdown);
loop {
tokio::select! {
_ = &mut shutdown => {
() = &mut shutdown => {
info!("shutdown signal received");
break;
}
Expand Down

0 comments on commit dd8105a

Please sign in to comment.