You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Good morning All!
Some weeks ago I have posted a question, and I have got some usefull answers but I couldn't resolved a new issue that I have.
I have a Groovy validator on Resolved transition when I want to change to Resolved status.
If fixed version is not populated it should show a message asking to enter a value for this field.
That issue is solved, but now if I have a value in the fixed version and try to transition to Resolved status it is showing a null pointer exception:
An unknown exception occured executing Validator
com.atlassian.jira.workflow.SkippableValidator@3eb359bf: root cause: java.lang.NullPointerException
This is the code I have for the validator on resolved transition:
import java.util.Collection;
import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.project.version.Version;
import com.opensymphony.workflow.InvalidInputException;
if (! $issue.getFixVersions().size()){
throw new InvalidInputException("Se requiere ingresar Versión de Resolución")
}
What do you think it should be the problem? is there somthing missing? how can I solve it?
thanks in advance,
Ro
I'm just thinking out loud and might be completely wrong, but could your try changing the if statement to:
if($issue.getFixVersions().size() < 1)
If that doesn't work, which add-on are you using to enter the validator in?
Kind regards
Jorden
Hi Jorden! it didn't work.
I am using groovy code runner.
the problem I have is when I populate the fixed version and try to transition to resolved status, I am getting the null pointer exception that I have pasted in the previous message. When I do not populate the fixed version is working fine.
Any suggestions?
thanks in advance
Ro
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.