Hello
I have a listener that changes issue status when assignee is changed.
Code looks like this:
MutableIssue issue = (MutableIssue) event.getIssue(); issue.setStatusObject(status); issue.store();
And it looks working but integrity checker reports errors about this issues:
Check workflow current step entries
You can't just set a status, it's not a field.
It's an indication of where an issue is in the workflow, and as such you can't simply set it, you need to push the issue through the transitions in the workflow from status X to status Y.
Have a look in the api for IssueService.transition - that's the process you need.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.