Skip to content

Commit

Permalink
Resolve a conflict #10754, #10755
Browse files Browse the repository at this point in the history
(cherry picked from commit 33680a4)
  • Loading branch information
michaelklishin authored and mergify[bot] committed Mar 16, 2024
1 parent b6f0670 commit 94d1a61
Showing 1 changed file with 4 additions and 15 deletions.
19 changes: 4 additions & 15 deletions deps/rabbit/src/rabbit_channel.erl
Expand Up @@ -109,20 +109,13 @@
max_message_size,
consumer_timeout,
authz_context,
max_consumers, % taken from rabbit.consumer_max_per_channel
%% taken from rabbit.consumer_max_per_channel
max_consumers,
%% defines how ofter gc will be executed
<<<<<<< HEAD
<<<<<<< HEAD
writer_gc_threshold,
%% true with AMQP 1.0 to include the publishing sequence
%% in the return callback, false otherwise
extended_return_callback
=======
max_consumers % taken from rabbit.consumer_max_per_channel
=======
>>>>>>> 72317cc1b0 (address feedback)
writer_gc_threshold
>>>>>>> d7374cb244 (Add consumers per channel limit)
}).

-record(pending_ack, {
Expand Down Expand Up @@ -533,13 +526,9 @@ init([Channel, ReaderPid, WriterPid, ConnPid, ConnName, Protocol, User, VHost,
max_message_size = MaxMessageSize,
consumer_timeout = ConsumerTimeout,
authz_context = OptionalVariables,
<<<<<<< HEAD
writer_gc_threshold = GCThreshold,
extended_return_callback = UseExtendedReturnCallback
=======
max_consumers = MaxConsumers,
writer_gc_threshold = GCThreshold
>>>>>>> d7374cb244 (Add consumers per channel limit)
extended_return_callback = UseExtendedReturnCallback,
max_consumers = MaxConsumers
},
limiter = Limiter,
tx = none,
Expand Down

0 comments on commit 94d1a61

Please sign in to comment.