You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ro...@apache.org on 2018/05/08 03:49:35 UTC

[cloudstack] branch 4.11 updated: schema: create upgrade path from 4.9.3.1 to 4.11.1.0 (#2628)

This is an automated email from the ASF dual-hosted git repository.

rohit pushed a commit to branch 4.11
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/4.11 by this push:
     new 7361649  schema: create upgrade path from 4.9.3.1 to 4.11.1.0 (#2628)
7361649 is described below

commit 736164931097e7d9e6b9cf69d5c9fc211e198e25
Author: Rafael Weingärtner <ra...@gmail.com>
AuthorDate: Tue May 8 00:49:28 2018 -0300

    schema: create upgrade path from 4.9.3.1 to 4.11.1.0 (#2628)
    
    Adds upgrade path from security release 4.9.3.1, which is treated same as 4.9.3.0.
---
 engine/schema/src/com/cloud/upgrade/DatabaseUpgradeChecker.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/engine/schema/src/com/cloud/upgrade/DatabaseUpgradeChecker.java b/engine/schema/src/com/cloud/upgrade/DatabaseUpgradeChecker.java
index f351928..158931b 100644
--- a/engine/schema/src/com/cloud/upgrade/DatabaseUpgradeChecker.java
+++ b/engine/schema/src/com/cloud/upgrade/DatabaseUpgradeChecker.java
@@ -408,6 +408,9 @@ public class DatabaseUpgradeChecker implements SystemIntegrityChecker {
         _upgradeMap.put(CloudStackVersion.parse("4.9.3.0"),
             new DbUpgrade[] {new Upgrade4930to41000(), new Upgrade41000to41100(), new Upgrade41100to41110()});
 
+        _upgradeMap.put(CloudStackVersion.parse("4.9.3.1"),
+                new DbUpgrade[] {new Upgrade4930to41000(), new Upgrade41000to41100(), new Upgrade41100to41110()});
+
         _upgradeMap.put(CloudStackVersion.parse("4.10.0.0"),
             new DbUpgrade[] {new Upgrade41000to41100(), new Upgrade41100to41110()});
 

-- 
To stop receiving notification emails like this one, please contact
rohit@apache.org.