Skip to content

Commit

Permalink
Adjust error message for unsupported set_ack_deadline in AQS
Browse files Browse the repository at this point in the history
  • Loading branch information
svix-jplatte committed Nov 21, 2024
1 parent e953ce0 commit 5452922
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion omniqueue/src/backends/azure_queue_storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ impl Acker for AqsAcker {

async fn set_ack_deadline(&mut self, _duration: Duration) -> Result<()> {
Err(QueueError::Unsupported(
"set_ack_deadline is not yet supported by InMemoryBackend",
"set_ack_deadline is not yet supported by AqsBackend",
))
}
}
Expand Down

0 comments on commit 5452922

Please sign in to comment.