Hi.
Could anyone provide a working groovy (or any other Script Runner-supported language) script to change the created date of a given issue (ISSUE-ID)?
Thanks in advance
Ok, I ended up stopping the database and runnin a SQL script to correct dates. The donwtime was only 2 minutes. And then I reindexed the project using Script Runner as suggested by Henning Tietgens [CTS Eventim AG]
Have you tried called
issue.setCreated(timestamp)
in a transition?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hm, that means I have to edit the workflow right?
We have like 35 issues re-entered manually to the new project, they obviously have created dates much later then the original was. I just want to run a script for each of them to change the createddate to the original one. else, I would have to stop the DB which is not a very good thing.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So you can try this from the Script Runner console... use componentManager.issueManager to get a MutableIssue object for each of the 35 issues and set the created date and store() the issue. Maybe you have to run a reindex on these issues after that, you can use the builtin reindex script from Script Runner for that.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Would have been good if you had given the background in the question.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
the documentation say that store() is deprecated, how should be done instead?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
"Deprecated" doesn't mean it's not working, only that's maybe not working in one of the next releases. A non-deprecated way to modify an issue is to use IssueService, but I'm not sure if it's possible to change the created date this way, because when an issue is created should be determined by the system...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
the store() is usually redundant... if you have your function towards the top of the list, the issue will be "stored" and reindexed later in that workflow function.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.