As a Jira Admin, I want to be able to determine DVCS sync job errors on the UI

XMLWordPrintable

      Problem Definition

      In the current implementation of DVCS, Jira admins can only see the last sync time for a repo. However, while the sync is going on or if it fails - we don't show why it failed or what errors it hit during the sync on the UI.

      Suggested Solution

      It would be a great value add if we could show the data we capture already either in jira logs or in the Database table on the DVCS section of Jira UI directly

      Workaround

      • Look for sync errors in Jira logs
      • use SQL query:
        select * from "AO_E8B6CC_REPOSITORY_MAPPING" RM
        JOIN "AO_E8B6CC_SYNC_AUDIT_LOG" AL
        ON RM."ID" = AL."REPO_ID"
        WHERE AL."TOTAL_ERRORS" !=0 AND RM."NAME" = '<repository name>';

            Assignee:
            Unassigned
            Reporter:
            Suddha
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: