We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 47904d2 + 7c2ef3d commit 156f0b9Copy full SHA for 156f0b9
opsqueue/src/consumer/client.rs
@@ -282,10 +282,9 @@ impl Client {
282
283
},
284
ServerToClientMessage::Async(msg) => {
285
- // Handle a message from the server that was not associated with an earlier request
286
match msg {
287
- AsyncServerToClientMessage::ChunkReservationExpired(_chunk_id) => {
288
- tracing::error!("Client could cancel execution of current work, but this is not implemented yet.");
+ AsyncServerToClientMessage::ChunkReservationExpired(chunk_id) => {
+ tracing::info!("Server indicated that we took too long with {chunk_id:?}, and now our reservation has expired.");
289
290
}
291
0 commit comments