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
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