Zero Down Time (ZDU) upgrades are not listed in System Info->Upgrade history

XMLWordPrintable

    • Type: Bug
    • Resolution: Unresolved
    • Priority: Low
    • None
    • Affects Version/s: 7.13.18, 8.5.10, 8.13.2, 8.13.25, 9.0.0, 9.4.0, 9.12.0, 10.0.0, 10.3.0, 10.7.0
    • Component/s: Data Center - ZDU
    • 7.13
    • 13
    • Severity 3 - Minor
    • 3

      Problem

      Zero Downtime Upgrade process in Jira DC 7.x and 8.x is not adding the target version information in the System Info -> Upgrade history

      Environment

      Jira Data Center 7.x and 8.x

      Steps to Reproduce

      • Install Jira Data Center 7.x or 8.x
      • Upgrade Jira DC to a newer version (following the document Upgrading Jira Data Center with zero downtime
      • Under System InfoLast Upgrade click in the link "Get more upgrade history details" 

      Expected Results

      Target version should be added in the Upgrade History
      (Database table upgradeversionhistory)

      Actual Results

      Target version is not added in the Upgrade History
      (Database table upgradeversionhistory)

      Workaround

      The SQL query below can be used to insert the missing values in the table "upgradeversionhistory"
       The query was created for PostgreSQL and syntax may vary to other database vendors
      Replace the '<UPGRADEDATE>','<TARGETBUILD>','<TARGETVERSION>' for the proper values

      INSERT INTO upgradeversionhistory (id, timeperformed, targetbuild, targetversion)
      VALUES ((SELECT MAX(id)+1 FROM upgradeversionhistory),'<UPGRADEDATE>','<TARGETBUILD>','<TARGETVERSION>');

            Assignee:
            Unassigned
            Reporter:
            Bruno
            Votes:
            13 Vote for this issue
            Watchers:
            16 Start watching this issue

              Created:
              Updated: