forked from Deuxfleurs/garage
Poll cleanup
This commit is contained in:
parent
cbfae673e8
commit
5b5ca63cf6
2 changed files with 3 additions and 3 deletions
|
@ -15,7 +15,7 @@ log = "0.4"
|
||||||
rusoto_core = { version = "0.48.0", default-features = false, features = ["rustls"] }
|
rusoto_core = { version = "0.48.0", default-features = false, features = ["rustls"] }
|
||||||
rusoto_credential = "0.48.0"
|
rusoto_credential = "0.48.0"
|
||||||
rusoto_signature = "0.48.0"
|
rusoto_signature = "0.48.0"
|
||||||
hyper-rustls = { version = "0.23", default-features = false, features = [ "http1", "http2", "tls12", "logging" ] }
|
hyper-rustls = { version = "0.23", default-features = false, features = [ "http1", "http2", "tls12" ] }
|
||||||
serde = "1.0.137"
|
serde = "1.0.137"
|
||||||
serde_json = "1.0.81"
|
serde_json = "1.0.81"
|
||||||
thiserror = "1.0.31"
|
thiserror = "1.0.31"
|
||||||
|
|
|
@ -213,7 +213,7 @@ impl K2VRpcHandler {
|
||||||
sort_key: String,
|
sort_key: String,
|
||||||
causal_context: CausalContext,
|
causal_context: CausalContext,
|
||||||
timeout_msec: u64,
|
timeout_msec: u64,
|
||||||
) -> Result<Option<K2VItem>, HelperError> {
|
) -> Result<Option<K2VItem>, Error> {
|
||||||
let poll_key = PollKey {
|
let poll_key = PollKey {
|
||||||
partition: K2VItemPartition {
|
partition: K2VItemPartition {
|
||||||
bucket_id,
|
bucket_id,
|
||||||
|
@ -256,7 +256,7 @@ impl K2VRpcHandler {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
K2VRpc::PollItemResponse(None) => (),
|
K2VRpc::PollItemResponse(None) => (),
|
||||||
v => return Err(Error::unexpected_rpc_message(v).into()),
|
v => return Err(Error::unexpected_rpc_message(v)),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue