Hello All,
I am Jira system administrator, i am able to see the Re-Index project option in project settings but project admins and Project Lead not able to see that option.
How do i enable Re-Index project option for them?
Thanks in Advance,
Mani
I'm afraid you can not, there's no way to delegate that permission alone.
Thanks @Nic Brough -Adaptavist-
Is there any way that Project admin can Re-Index the project issues?
Thanks in advance,
Mani
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Um, see my answer?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am trying to Re-Index the all issues in a project for every 1 minute with the Script Runner "Escalation services" using below script. However, it is Re-Indexing only particular issue every time. If it is possible to Re-index the all issues every one minute it will solve my problem.
import com.atlassian.jira.issue.index.IssueIndexingService import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.issue.Issue import com.atlassian.jira.util.ImportUtils import org.apache.log4j.Category def issueManager = ComponentAccessor.getIssueManager() def issueIndexingService = ComponentAccessor.getComponent(IssueIndexingService) boolean wasIndexing = ImportUtils.isIndexIssues(); ImportUtils.setIndexIssues(true); log.warn("Reindex issue ${issue.key} ${issue.id}") issueIndexingService.reIndex(issueManager.getIssueObject(issue.id)); ImportUtils.setIndexIssues(wasIndexing);
Thanks in Advance,
Mani
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do NOT do that, it will fail. Please see my response on your duplicate question.
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.