Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,551,907
Community Members
 
Community Events
184
Community Groups

How to commit changes unassigning issue in groovy script

Hi,

We need a groovy script that clears Assingee field to Unassigned.

This script will be triggered from script runner, only in certain conditions.

My code:

 

import com.atlassian.jira.ComponentManager

import com.atlassian.jira.issue.CustomFieldManager

import com.atlassian.jira.issue.Issue

import com.atlassian.jira.issue.MutableIssue

import com.atlassian.jira.issue.comments.CommentManager

import com.atlassian.jira.issue.fields.CustomField

import com.atlassian.jira.util.ImportUtils

import com.atlassian.jira.user.util.UserManager

import com.atlassian.crowd.embedded.api.User

 

MutableIssue issue = issue

issue.setAssignee(null)

log.error("Assignee: " + issue.getAssigneeId())

 

the log is printing null, which is correct, but when consulting the issue it is istill assigned.

what i'm doing wrong?

Thx in advance!!

1 answer

0 votes
Peter-Dave Sheehan
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Apr 19, 2019

Where is this being run from?

If it's run from a PostFunction, the change may be missing because of the order of the post functions. Be sure to place it before "update change history and story the issue".

If this is in a listener or other script, then you need to perform several steps yourself if you want to replicate the normal behavior.

  1. call updateIssue() method from IssueManager to store the issue in the db
  2. call createChangeGroup() method from ChangeLogUtil to create the change history
  3. call reIndex(issue) method from IssueIndexingService to update the index and have the new values available for searching.

There are several examples in the community for how to use all those

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events