rollbar / rollbar.js

Error tracking and logging from Javascript to Rollbar

Home Page:https://docs.rollbar.com/docs/javascript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JIRA integration

cyrus-za opened this issue · comments

Not really related to rollbar.js specifically, but there seems to be no specific place to log bugs. I filed a support ticket, but none of the options on there were about technical issues, so I am posting it here too.

We love using the rollbar integrations with slack, jira, email etc.

There is one annoying issue though. When a rollbar item is resolved and it updates the jira ticket to Done, it does it twice. This means our jira-slack integration spams twice. See below
image

Can you please do a check before transitioning to a state to see if it's already in the state. Doing simple GET to jira to get the issue you can do

if(issue.fields.status.name === newState) return;

@cyrus-za Thank you for taking time to report this. I'll forward it to the team.

CH80756