Validator to check if affectedVersion is released always returns false

Oliver February 15, 2017

I'm setting up a simple scripted validator on the create step to ensure that the Affected versions are released, however the validator always fires even for affected versions which are released, and I'm having hard time figuring out where I'm going wrong. 

 

The validator is on the 'Create' step of the workflow, 

def affectedVersion = issue.affectedVersions
def releaseState = issue.affectedVersions*.isReleased()

releaseState == true

log.error "LOGGER:" + "$affectedVersion" + "$releaseState"

 

In the log output, I can see that it's correctly reporting the releaseState, but even for versions where releaseState is being logged as true, the validator is kicking in.

 

Any suggestions would be much appreciated! 

1 answer

0 votes
Cristina_Abunei
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.
February 23, 2017

Hello,

 

Try to return the comparison's result:

return releaseState == true

The validator isn't returning anything so the result is coreced to false.

 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events