Skip to content

Commit

Permalink
Fix rcv-settle-mode for sender links
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Jan 2, 2025
1 parent 87b6161 commit 3c1c977
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

## [3.3.1] - 2025-01-02

* Fix rcv-settle-mode for sender links

## [3.3.0] - 2024-12-04

* Use updated Service trait
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-amqp"
version = "3.3.0"
version = "3.3.1"
authors = ["ntex contributors <[email protected]>"]
description = "AMQP 1.0 Client/Server framework"
documentation = "https://docs.rs/ntex-amqp"
Expand All @@ -26,7 +26,7 @@ frame-trace = []

[dependencies]
ntex = "2.10"
ntex-io = "2.9.1"
ntex-io = "2.9.2"
ntex-amqp-codec = "0.9"

bitflags = "2"
Expand Down
2 changes: 1 addition & 1 deletion src/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ impl SessionInner {
handle: token as Handle,
role: Role::Sender,
snd_settle_mode: attach.snd_settle_mode(),
rcv_settle_mode: ReceiverSettleMode::First,
rcv_settle_mode: attach.rcv_settle_mode(),
source: attach.0.source.clone(),
target: attach.0.target.clone(),
unsettled: None,
Expand Down

0 comments on commit 3c1c977

Please sign in to comment.