The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Adding user to a project's role postfunction script works only if executed twice

Fazila Ashraf
Community Champion
February 16, 2019

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!

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Prashant Mali
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 Champions.
September 5, 2019

Yes. We are facing the exactly the same issue.

 

Any update?

TAGS
AUG Leaders

Atlassian Community Events