-
Bug
-
Resolution: Fixed
-
High
-
7.19.0, 7.19.1
-
None
-
Severity 1 - Critical
-
Issue Summary
After upgrading Bitbucket to 7.19.0/7.19.1, the Jira development information panel does not show the branches and PRs associated with a particular issue. This is due to a misbehaving upgrade task that has deleted the AO_777666_JIRA_INDEX and AO_777666_UPDATED_ISSUES tables. However, getting the commits from the Jira development information panel will work correctly.
Steps to Reproduce
- Pre-upgrade: create a PR with an issue key in the title and confirm it shows up correctly in Jira
- Upgrade to 7.19.0/7.19.1
- Click on PR link in Jira development information panel
Expected Results
Expect to see the linked PR in the modal.
Actual Results
The modal shows an error message: "You don't have access to view all related pull requests. Please contact your administrator."
Workaround
The data has been deleted from the database, you can reindex the repository to recreate this data through sending a POST request to this endpoint:
{bitbucket_base_url}/rest/jira-dev/latest/projects/{project_key}/repos/{repo_slug}/reindex
There is also a python script attached which will go through all the repositories in the instance and reindex them: reindexScript.py
python3 reindexScript.py bitbucketBaseUrl username
After upgrading still had the issue, but reindexing solved it, thank you!! I did however modify the script to use an HTTP Access Token instead of a username and password. I can't seem to attach files however, so here is my version of the script: