Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Apr 9, 2024
1 parent 508926c commit 2473e66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/delivery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ impl Delivery {
}

pub async fn wait(&self) -> Result<Option<DeliveryState>, AmqpProtocolError> {
if self.0.flags.get().contains(Flags::LOCAL_SETTLED) {
if self.flags.get().contains(Flags::LOCAL_SETTLED) {
return Ok(None);

Check warning on line 138 in src/delivery.rs

View check run for this annotation

Codecov / codecov/patch

src/delivery.rs#L138

Added line #L138 was not covered by tests
}

Expand Down

0 comments on commit 2473e66

Please sign in to comment.