Skip to content

Commit

Permalink
Fix bytes value
Browse files Browse the repository at this point in the history
  • Loading branch information
geirolz committed Sep 30, 2024
1 parent 53ff16a commit b5ec1c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ case class Fs2RabbitConfig(

object Fs2RabbitConfig {

val defaultMaxInboundMessageBodySizeBytes: Int = 1_048_576 * 64
val defaultMaxInboundMessageBodySizeBytes: Int = 1048576 * 64 // 64MB

def apply(
host: String,
Expand Down

0 comments on commit b5ec1c3

Please sign in to comment.