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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I am trying to unpick something that has been working but seemingly broke a little while back.
We have a Jira project for Contract Management and are using Scriptrunner with a Post Transition Function to add an object to Insight.
We are seeing an error when the Post Function runs:
ViewWorkflowTransition.jspa?workflowMode=live&workflowName=Create+Contract&descriptorTab=postfunctions&workflowTransition=1&highlight=4
org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
file:/Path/InsightManagerForScriptrunner.groovy: 750: you tried to assign a value to the class 'java.util.Map'
@ line 750, column 21.
Map.value = Map.value.collect { it.toString() }
^
1 error
Am a bit stumped having not used Scriptrunner previously, what can I check in the script to see what might be causing this?
I would expect the word "Map" to be in lower case. But that depends on whether you have an actual variable called "map".
But if you could share a larger snippet of the script I can help further debug.
Thanks @Peter-Dave Sheehan @Joshua Sneed Contegix for your uber quick responses.
Would you believe it was a typo, changed upper case on the Map.value for map.value and that fixed it !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Simon,
What is on line 750 in the 21st position? It may also help to place a few logging lines in your script so that you can check variable values after it runs, this may allow you to see a data type mismatch or the value you tried to assign to the class. Cheers!
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.