It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
After noticing how ScriptRunner's built-in script to clean up resolutions doesn't count as activity on the issues it touches, I wondered if similar clean-up operations could be done from the script console. In this case, I'd like to find all issues that haven't been updated in x days, where the assignee is an inactive account, and then reset those issues to unassigned.
This is pretty easy to do with a bulk operation, but I'd like to avoid making a bunch of old tickets look suddenly active again if possible.
It's probably also simple from the database, but I try to work with a policy of not writing to that unless I absolutely HAVE to.
Thanks!
You will need to do the storing and indexing manually without going through any of the issue services or managers otherwise the history will change.
You can adapt the following code to prevent an entry being added in the history:
import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.issue.index.IssueIndexManager import com.atlassian.jira.util.ImportUtils def indexManager = ComponentAccessor.getComponent(IssueIndexManager) boolean wasIndexing = ImportUtils.isIndexIssues(); ImportUtils.setIndexIssues(true); try { // do something to issue object and store issue.store() } finally { indexManager.reIndex(issue); ImportUtils.setIndexIssues(wasIndexing); }
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHey Atlassian Community! Today we are launching a bunch of customer stories about the amazing work teams, like Dropbox and Twilio, are doing with Jira. You can check out the stories here. The thi...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.