No SprintUpdatedEvent when editing sprint goal or reordering sprint

Josef Moser October 17, 2019

Hi,

  I wrote a Jira plugin that captures sprint events and updates our project management software in real-time with changes happening in Jira.

 

While testing the functionality I noticed that adding or editing sprint goals, or moving sprints up/down does not seem to fire sprint event. Same thing happens when I update or exchange sprints via the REST API. If I change some other property then I get a SprintUpdatedEvent as expected.

 

Additional info:

To check what events are fired by the server, I use the following, very general, event listener in my plugin:

@EventListener
public void onPossibleSprintEvent1(Object event) {
  LOGGER.info("got event: " + event.getClass().getName());
}

 

1 answer

0 votes
Alexey Stepanov [ALM Works] July 8, 2021

There is com.atlassian.greenhopper.analytics.SprintUpdatedAnalyticsEvent that can be used to catch sprint goal change.

Suggest an answer

Log in or Sign up to answer