Uploaded image for project: 'Bitbucket Data Center'
  1. Bitbucket Data Center
  2. BSERV-13097

Branches/PR links in the Jira development information panel does not show any data after upgrade to 7.19

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: High High
    • 7.19.2
    • 7.19.0, 7.19.1
    • Integration - JIRA
    • None

      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

      1. Pre-upgrade: create a PR with an issue key in the title and confirm it shows up correctly in Jira
      2. Upgrade to 7.19.0/7.19.1
      3. 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

        1. reindexScript.py
          2 kB
          Aditya Karia

            [BSERV-13097] Branches/PR links in the Jira development information panel does not show any data after upgrade to 7.19

            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:

            import requests
            import argparse
            import getpass
            
            parser = argparse.ArgumentParser(description="Reindex all the repositories in your instance")
            parser.add_argument('baseUrl', type=str, help="The base url of the Bitbucket instance (WITHOUT trailing slash!)")
            args = parser.parse_args()
            
            accessToken = getpass.getpass('HTTP Access Token: ')
            
            baseUrl = args.baseUrl
            
            headers = {'X-Atlassian-Token': 'no-check', 'Authorization': 'Bearer '+accessToken, 'Content-Type': 'application/json'}
            
            def getRepos(projectKey, start):
                return requests.get(baseUrl + "/rest/api/latest/projects/{}/repos?start={}".format(projectKey, start), headers=headers).json()
            
            def getProjects(start):
                return requests.get(baseUrl + "/rest/api/latest/projects?start={}".format(start), headers=headers).json()
            
            numOfReposReindexed = 0
            projects = requests.get(baseUrl + "/rest/api/latest/projects", headers=headers).json()
            
            while projects["size"] != 0:
                for project in projects["values"]:
                    projectKey = project["key"]
            
                    repos = getRepos(projectKey, 0)
                    while repos["size"] != 0:
                        for repo in repos["values"]:
                            repoSlug = repo["slug"]
            
                            print("Reindexing repository {}/{}".format(projectKey, repoSlug))
                            try:
                                result = requests.post(baseUrl + "/rest/jira-dev/latest/projects/{}/repos/{}/reindex".format(projectKey, repoSlug), headers=headers)
                                if result.status_code != 204:
                                    print("Failed to reindex repository {}/{} with status code {}".format(projectKey, repoSlug, result.status_code))
                                else:
                                    numOfReposReindexed += 1
                            except requests.exceptions.ConnectionError as e:
                                print("ConnectionError for repository {}/{}, check that the repository has been reindexed successfully: {}".format(projectKey, repoSlug, e))
                                continue
            
                        repos = getRepos(projectKey, repos["start"] + repos["size"])
            
                projects = getProjects(projects["start"] + projects["size"])
            
            print("{} repositories reindexed".format(numOfReposReindexed))
            
            

            Marijn van Zon added a comment - 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: import requests import argparse import getpass parser = argparse.ArgumentParser(description= "Reindex all the repositories in your instance" ) parser.add_argument( 'baseUrl' , type = str , help = "The base url of the Bitbucket instance (WITHOUT trailing slash!)" ) args = parser.parse_args() accessToken = getpass.getpass( 'HTTP Access Token: ' ) baseUrl = args.baseUrl headers = { 'X-Atlassian-Token' : 'no-check' , 'Authorization' : 'Bearer ' +accessToken, 'Content-Type' : 'application/json' } def getRepos(projectKey, start): return requests.get(baseUrl + "/rest/api/latest/projects/{}/repos?start={}" . format (projectKey, start), headers=headers).json() def getProjects(start): return requests.get(baseUrl + "/rest/api/latest/projects?start={}" . format (start), headers=headers).json() numOfReposReindexed = 0 projects = requests.get(baseUrl + "/rest/api/latest/projects" , headers=headers).json() while projects[ "size" ] != 0: for project in projects[ "values" ]: projectKey = project[ "key" ] repos = getRepos(projectKey, 0) while repos[ "size" ] != 0: for repo in repos[ "values" ]: repoSlug = repo[ "slug" ] print ( "Reindexing repository {}/{}" . format (projectKey, repoSlug)) try : result = requests.post(baseUrl + "/rest/jira-dev/latest/projects/{}/repos/{}/reindex" . format (projectKey, repoSlug), headers=headers) if result.status_code != 204: print ( "Failed to reindex repository {}/{} with status code {}" . format (projectKey, repoSlug, result.status_code)) else : numOfReposReindexed += 1 except requests.exceptions.ConnectionError as e: print ( "ConnectionError for repository {}/{}, check that the repository has been reindexed successfully: {}" . format (projectKey, repoSlug, e)) continue repos = getRepos(projectKey, repos[ "start" ] + repos[ "size" ]) projects = getProjects(projects[ "start" ] + projects[ "size" ]) print ( "{} repositories reindexed" . format (numOfReposReindexed))

            ac671f8a72d4 I have updated the description to include the command

            Aditya Karia added a comment - ac671f8a72d4 I have updated the description to include the command

            How to call the reindexScript.py Script?

            Torsten Kleiber added a comment - How to call the reindexScript.py Script?

            Note on reindexScript.py: The individual reindex calls are blocking but no data is transferred until completion, as such load balancers or proxy servers with idle timeouts may terminate the blocked REST call. Indexing will still continue on the server regardless.

            Aditya Karia added a comment - Note on reindexScript.py: The individual reindex calls are blocking but no data is transferred until completion, as such load balancers or proxy servers with idle timeouts may terminate the blocked REST call. Indexing will still continue on the server regardless.

              miwalker Michael Walker
              akaria@atlassian.com Aditya Karia
              Affected customers:
              9 This affects my team
              Watchers:
              24 Start watching this issue

                Created:
                Updated:
                Resolved: