Cannot set issue resolution

Georgiy Senenkov October 16, 2012

Hello,

I use JIRA 5.1.6 and need to modify resolution for some issues by using groovy script. My code looks like

issueId = "ABC-123"
Issue issue = issueManager.getIssueObject(issueId)
..
..
newIssueResolution = issueSubTask.getResolutionObject()
issue.setResolutionObject(newIssueResolution)

boolean wasIndexing = ImportUtils.isIndexIssues()

// be sure indexing is on

ImportUtils.setIndexIssues(true)

issueIndexManager.reIndex(issue)

ImportUtils.setIndexIssues(wasIndexing)


System.out.println(issue.getKey() + " HAS NEW " + issue.getResolutionObject().getName() + "  resolution")

and in the JIRA logs i can see that println returns correct NEW resolution, but in JIRA issue still has OLD resolution.

Could you please advise what is wrong here?

Thank you.

Cheers, Georgiy

1 answer

1 accepted

1 vote
Answer accepted
Henning Tietgens
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 16, 2012

You have to call issue.store() after updating the issue, before reindexing. BTW the issue class should be MutableIssue if you want to modify the issue.

Henning

Georgiy Senenkov October 16, 2012

issue.store()

is what I've been missing :)

Thank you very much!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events