The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
Hello everyone, Hope everyone is safe! A few months ago we posted an article sharing all the new articles and documentation that we, the AMER Jira Service Management team created. As mentioned ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.