Poll cleanup

This commit is contained in:
Alex Auvolat
2023-01-11 15:17:27 +01:00
parent cbfae673e8
commit 5b5ca63cf6
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -213,7 +213,7 @@ impl K2VRpcHandler {
sort_key: String,
causal_context: CausalContext,
timeout_msec: u64,
) -> Result<Option<K2VItem>, HelperError> {
) -> Result<Option<K2VItem>, Error> {
let poll_key = PollKey {
partition: K2VItemPartition {
bucket_id,
@@ -256,7 +256,7 @@ impl K2VRpcHandler {
}
}
K2VRpc::PollItemResponse(None) => (),
v => return Err(Error::unexpected_rpc_message(v).into()),
v => return Err(Error::unexpected_rpc_message(v)),
}
}