Allow AMQP client to leave 'more' unset
This commit is contained in:
parent
f93f901e5f
commit
f122483e34
|
|
@ -1717,7 +1717,7 @@ incoming_mgmt_link_transfer(
|
||||||
%% given that we are going to send a response anyway.
|
%% given that we are going to send a response anyway.
|
||||||
true = Settled,
|
true = Settled,
|
||||||
%% In the current implementation, we disallow large incoming management request messages.
|
%% In the current implementation, we disallow large incoming management request messages.
|
||||||
false = More,
|
false = default(More, false),
|
||||||
#management_link{name = Name,
|
#management_link{name = Name,
|
||||||
delivery_count = IncomingDeliveryCount0,
|
delivery_count = IncomingDeliveryCount0,
|
||||||
credit = IncomingCredit0,
|
credit = IncomingCredit0,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue