Hello,
I use JIRA 5.1.6 and need to modify "Affects Version/s" based on the Branch fix "Fix Version/s". My code looks like
Issue issue = issueManager.getIssueObject("ABC-123") branchFixVersion = issue.getFixVersions() parent = issue.getParentObject() parent.setAffectedVersions(branchFixVersion) parent.store() System.out.println("NEW PARENT Affected Version is : " + parent.getAffectedVersions()); boolean wasIndexing = ImportUtils.isIndexIssues() ImportUtils.setIndexIssues(true) issueIndexManager.reIndex(parent) ImportUtils.setIndexIssues(wasIndexing)
and in the JIRA logs i can see that println returns correct NEW afefcted version, but in JIRA issue affected version is not updated
Could you please advise what is wrong here?
Thank you.
Cheers, Georgiy
Use
ComponentAccessor.getIssueManager().updateIssue(......);
http://docs.atlassian.com/jira/latest/com/atlassian/jira/issue/IssueManager.html
So it will be
ComponentAccessor.getIssueManager().updateIssue(ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser(),parent,EventDispatchOption.DO_NOT_DISPATCH,false);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.