I'm debugging my new jira-cloud connect addon. I've tested webhooks about a month ago, then tried to use the same config again (installed addon for new trial instance), and received no webhooks. After removing flag "excludeBody: false" and installing addon again, webhooks started working. But after an hour they stopped one more time, and I don't understand any reason for such behavior.
Maybe, it's some penalty for domain, after receiving some 504 errors, when I was looking at my app's behavior in debug? How can I control this?
Here's webhooks' definition:
"modules": { "webhooks": [ { "event": "jira:issue_created", "url": "/jira/incoming-webhook" }, { "event": "jira:issue_updated", "url": "/jira/incoming-webhook" }, { "event": "jira:issue_deleted", "url": "/jira/incoming-webhook" }, { "event": "worklog_created", "url": "/jira/incoming-webhook" }, { "event": "worklog_updated", "url": "/jira/incoming-webhook" }, { "event": "worklog_deleted", "url": "/jira/incoming-webhook" } ] }
I fixed the problem myself. Actual cause of broken webhooks was invalid ssl-certificate.
The reason of my confusion were several webhook-requests that I received without changing certificate.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.