Hi everyone,
I face a problem when trying to handle with jira webhook. I created a jira webhook via rest API to trigger changes from jira. It trigger the change sucessfully and my app can receive the message every changing on jira project. But after a day of testing (trigger jira webhook event many times and quickly), my app can not get the message sucessfully. From the callback function of my app (function handle message for callback URL of webhook), it raised a exception when i parse the request body (python code).
data = await request.json() => It raise the exception with message:
raise ClientDisconnect()
starlette.requests.ClientDisconnect
I guest the trigger webhoook from jira cloud server meet the limitation but not sure.
Anyone can help the problem?