This commit is contained in:
Dominik Werder
2023-12-05 15:44:11 +01:00
parent a5d3350747
commit 1b3e9ebd2a
35 changed files with 1180 additions and 948 deletions

View File

@@ -8,29 +8,27 @@ edition = "2021"
path = "src/disk.rs"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_cbor = "0.11.1"
http = "0.2"
chrono = { version = "0.4.19", features = ["serde"] }
tokio-stream = {version = "0.1.5", features = ["fs"]}
hyper = { version = "0.14", features = ["http1", "http2", "client", "server", "tcp", "stream"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
serde_cbor = "0.11.2"
chrono = { version = "0.4.31", features = ["serde"] }
tokio-stream = {version = "0.1.14", features = ["fs"]}
async-channel = "1.9.0"
crossbeam = "0.8"
bytes = "1.4.0"
crossbeam = "0.8.2"
bytes = "1.5.0"
crc32fast = "1.3.2"
arrayref = "0.3.6"
byteorder = "1.4.3"
byteorder = "1.5.0"
futures-util = "0.3.14"
async-stream = "0.3.0"
tracing = "0.1.25"
tracing = "0.1.40"
tracing-futures = { version = "0.2.5", features = ["futures-03", "std-future"] }
fs2 = "0.4.3"
libc = "0.2.93"
hex = "0.4.3"
num-traits = "0.2.14"
num-derive = "0.4.0"
url = "2.4.0"
url = "2.5.0"
tiny-keccak = { version = "2.0", features = ["sha3"] }
err = { path = "../err" }
taskrun = { path = "../taskrun" }

View File

@@ -769,7 +769,7 @@ impl BlockingTaskIntoChannel {
match tx.send_blocking(Err(Error::with_msg_no_trace(msg))) {
Ok(()) => (),
Err(e) => {
error!("blocking_task_into_channel can not send into channel {e}");
error!("blocking_task_into_channel can not send Err into channel {e}");
}
}
break;
@@ -783,7 +783,8 @@ impl BlockingTaskIntoChannel {
match tx.send_blocking(Ok(item)) {
Ok(()) => (),
Err(e) => {
error!("blocking_task_into_channel can not send into channel {e}");
// Receiver most likely disconnected.
// error!("blocking_task_into_channel can not send into channel {e}");
break;
}
}
@@ -793,7 +794,7 @@ impl BlockingTaskIntoChannel {
match tx.send_blocking(Err(e.into())) {
Ok(()) => (),
Err(e) => {
error!("blocking_task_into_channel can not send into channel {e}");
error!("blocking_task_into_channel can not send Err into channel {e}");
}
}
break;