-
Bug
-
Resolution: Unresolved
-
Low (View bug fix roadmap)
-
None
-
7.13.18, 8.5.10, 8.13.2, 8.13.25
-
7.13
-
9
-
Severity 3 - Minor
-
2
-
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 Info > Last 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>');
- relates to
-
JRASERVER-69384 Upgrades are not registered in the Upgrade History page in the User Interface
-
- Gathering Impact
-
- mentioned in
-
Page Failed to load
The issue was appearing on our Datacenter instance when upgrading from 9.4.14 to 9.4.18 and the bug is ongoing since then even after upgrade to LTS 9.12.x.
So the bug isn't resolved. The workaround is only a workaround but not persistent.