Hi everyone,
I got a problem similar to the one described here, with difference that there was described an update issue problem, and now it is a transition issue problem.
So in general it looks like this:
I do auto transition in script post function by scriptrunner and mostly it is fine except some issues that are not being reindexed properly. So issue is actually in the right status, but before I update it in any other way it appears in the old status in search.
Here is my code:
Integer actionId = actionI.intValue()
if (!issueInputParameters) {
issueInputParameters = ComponentAccessor.issueService.newIssueInputParameters();
}
IssueService.TransitionValidationResult transitionValidationResult = ComponentAccessor.issueService.validateTransition(applicationUser, issue.id, actionId, issueInputParameters)
log.debug logPref + "Transitioning issue: " + issue.id + " transitionValidationResult " + transitionValidationResult
if (transitionValidationResult.isValid()) {
IssueService.IssueResult transitionResult = ComponentAccessor.issueService.transition(applicationUser, transitionValidationResult)
if (transitionResult.isValid()) {
log.debug 'Issue transitioned. Action Id: ' + actionId
ReindexIssue(issue, logPref)
} else {
log.error 'Error executing transition with action Id ' + actionId
}
} else {
log.error logPref + "Validation error: " + transitionValidationResult.getErrorCollection()
List<String> errorList = new ArrayList();
errorList.addAll(transitionValidationResult.getErrorCollection().getErrorMessages());
for (int i = 0; errorList != null && i < errorList.size(); i++) {
log.error 'Error validating transition with action Id ' + actionId + ' :' + errorList.get(i);
}
}
static void ReindexIssue(Issue anIssue, String logPref) {
boolean wasIndexing = ImportUtils.isIndexIssues()
ImportUtils.setIndexIssues(true)
ComponentAccessor.getIssueIndexManager().reIndex(anIssue)
ImportUtils.setIndexIssues(wasIndexing);
}
Post Function is located right after storing to DB before reindexing.
JIRA version is 6.4.7 and Scriptrunner is 3.1.3
Any help would be appreciated.
Hi Viktor
Did you try to move the post function in the beggining ?
regards, Thanos
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Thanos,
Thanks for your reply!
This is acutally discussed here:
And resolved also.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
cool :)
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.