Skip to content

Commit

Permalink
Fix test of big message
Browse files Browse the repository at this point in the history
Since RabbitMQ 3.8.0 max size of message is 128MB.
  • Loading branch information
decaz committed Oct 3, 2019
1 parent d36ec87 commit f326985
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_amqp.py
Original file line number Diff line number Diff line change
Expand Up @@ -1071,7 +1071,7 @@ async def test_big_message(self):

await queue.bind(exchange, routing_key)

body = bytes(shortuuid.uuid(), 'utf-8') * 9999999
body = bytes(shortuuid.uuid(), 'utf-8') * 6000000

await exchange.publish(
Message(
Expand Down

0 comments on commit f326985

Please sign in to comment.