@@ -48,6 +48,7 @@ private async Task<IConsumer> StandardConsumer(bool boot)
4848 Reference = _consumerConfig . Reference ,
4949 ConsumerUpdateListener = _consumerConfig . ConsumerUpdateListener ,
5050 IsSingleActiveConsumer = _consumerConfig . IsSingleActiveConsumer ,
51+ InitialCredits = _consumerConfig . InitialCredits ,
5152 OffsetSpec = offsetSpec ,
5253 ConnectionClosedHandler = async _ =>
5354 {
@@ -69,7 +70,8 @@ private async Task<IConsumer> StandardConsumer(bool boot)
6970 _lastOffsetConsumed [ _consumerConfig . Stream ] = ctx . Offset ;
7071 if ( _consumerConfig . MessageHandler != null )
7172 {
72- await _consumerConfig . MessageHandler ( _consumerConfig . Stream , consumer , ctx , message ) . ConfigureAwait ( false ) ;
73+ await _consumerConfig . MessageHandler ( _consumerConfig . Stream , consumer , ctx , message )
74+ . ConfigureAwait ( false ) ;
7375 }
7476 } ,
7577 } , BaseLogger ) . ConfigureAwait ( false ) ;
@@ -89,7 +91,8 @@ private async Task<IConsumer> SuperConsumer(bool boot)
8991 }
9092 else
9193 {
92- var partitions = await _consumerConfig . StreamSystem . QueryPartition ( _consumerConfig . Stream ) . ConfigureAwait ( false ) ;
94+ var partitions = await _consumerConfig . StreamSystem . QueryPartition ( _consumerConfig . Stream )
95+ . ConfigureAwait ( false ) ;
9396 foreach ( var partition in partitions )
9497 {
9598 offsetSpecs [ partition ] =
@@ -104,6 +107,7 @@ private async Task<IConsumer> SuperConsumer(bool boot)
104107 Reference = _consumerConfig . Reference ,
105108 ConsumerUpdateListener = _consumerConfig . ConsumerUpdateListener ,
106109 IsSingleActiveConsumer = _consumerConfig . IsSingleActiveConsumer ,
110+ InitialCredits = _consumerConfig . InitialCredits ,
107111 OffsetSpec = offsetSpecs ,
108112 MessageHandler = async ( stream , consumer , ctx , message ) =>
109113 {
0 commit comments