py-amqp
py-amqp copied to clipboard
Basic.publish: (406) PRECONDITION_FAILED - message size larger than configured max
I've encountered this error while passing arguments that are purely strings, and I'm doubtful that they can generate a size this large: exception: Basic.publish: (406) PRECONDITION_FAILED - message size 179010654 is larger than configured max size 134217728
This is my defined task throwing this error : @shared_task def test( arg1, arg2,arg3, arg4=None, arg5='github', arg6="full", pullRequestId=None, baseBranchName='', checkRunId=None ): These are either strings or integers
@auvipy It would be great if you could help :)