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.
Hello, I'm on Jira Server 8.2.4 using Scriptrunner to make a post-function that breaks up a single description into multiple clones based on special tags that are parsed. This is because my company as a whole uses Jira for software development, but my department does not, though we track many approvals on very similar groups of assets, and use individual tickets and custom fields for that tracking.
I've got most of the code working, but as soon as I call issueFactory.cloneIssueWithAllFields(), the script continues to run successfully, but I cannot see any additional logs, which is making debugging difficult.
I suspect this is because a new log is started for each new issue once cloneIssueWithAllFields() is called, but the original issue runs in a loop until all tags are found and a new ticket is made for each.
After cloning, the information is updated and then the issue itself is created with issueManager.createIssueObject()
I am reading the logs in the post-function workflow and don't know of another way to access them.
Thanks! These forums have been invaluable in getting me this far!