Skip to content

Commit 8d93c22

Browse files
committed
compilation passes
Signed-off-by: Brian L. Troutwine <[email protected]>
1 parent fccc188 commit 8d93c22

File tree

5 files changed

+5
-33
lines changed

5 files changed

+5
-33
lines changed

Cargo.lock

+1-29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lading/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ tokio = { workspace = true, features = [
7878
] }
7979
tokio-stream = { version = "0.1", features = ["io-util"] }
8080
tokio-util = { version = "0.7", features = ["io"] }
81-
tonic = { version = "0.9" }
81+
tonic = { version = "0.12" }
8282
tower = { workspace = true, features = [
8383
"timeout",
8484
"limit",

lading/src/blackhole/http.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ impl Http {
248248
pin!(shutdown);
249249
loop {
250250
tokio::select! {
251-
_ = &mut shutdown => {
251+
() = &mut shutdown => {
252252
info!("shutdown signal received");
253253
break;
254254
}

lading/src/blackhole/splunk_hec.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ impl SplunkHec {
201201
pin!(shutdown);
202202
loop {
203203
tokio::select! {
204-
_ = &mut shutdown => {
204+
() = &mut shutdown => {
205205
info!("shutdown signal received");
206206
break;
207207
}

lading/src/blackhole/sqs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ impl Sqs {
108108
pin!(shutdown);
109109
loop {
110110
tokio::select! {
111-
_ = &mut shutdown => {
111+
() = &mut shutdown => {
112112
info!("shutdown signal received");
113113
break;
114114
}

0 commit comments

Comments
 (0)