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.
Hi
I execute the below snippet in the transition postfunction as scriptrunner script to add the actor to the given project's user role.
ApplicationUser user = ComponentAccessor.getUserManager().getUserByKey("jira-admin-user")
ComponentAccessor.getJiraAuthenticationContext().setLoggedInUser(user)
def projectManager = ComponentAccessor.getProjectManager()
def projectRoleService = ComponentAccessor.getComponent(ProjectRoleService)
def projectRoleManager = ComponentAccessor.getComponent(ProjectRoleManager)
def actors=[fazila]
def project = projectManager.getProjectObjByKey("JIRASUPPORT")
def projectRole = projectRoleManager.getProjectRole("Users")
def errorCollection = new SimpleErrorCollection()
projectRoleService.addActorsToProjectRole(actors,
projectRole,
project,
ProjectRoleActor.USER_ROLE_ACTOR_TYPE,
errorCollection)
log.debug "errorCollection" + errorCollection.toString()
It works well in the staging JIRA instance. But when i did the same in production, i have to execute the transition twice to actually get the user account added to the project's role.
The errorcollection is empty for both the execution and there are logs for both the transition execution. The code gets executed with out any error but the first time it just doesnt do the add user to project role action.
When i execute it in script console, once is actually enough.
What could be causing this in the JIRA instance?
Thanks in advance for the help and insight!
Yes. We are facing the exactly the same issue.
Any update?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.