You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by mc...@apache.org on 2013/10/05 02:39:22 UTC

[2/2] git commit: updated refs/heads/4.2 to b63270f

CLOUDSTACK-4816: Add global configure s3.multipart.enabled


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/b63270f1
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b63270f1
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b63270f1

Branch: refs/heads/4.2
Commit: b63270f1d355458e9f5f2543d4320c5c832c41fe
Parents: 975422a
Author: Min Chen <mi...@citrix.com>
Authored: Fri Oct 4 17:27:04 2013 -0700
Committer: Min Chen <mi...@citrix.com>
Committed: Fri Oct 4 17:38:40 2013 -0700

----------------------------------------------------------------------
 .../com/cloud/upgrade/dao/Upgrade420to421.java  | 10 ++++++--
 setup/db/db/schema-420to421.sql                 | 24 ++++++++++++++++++++
 2 files changed, 32 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/b63270f1/engine/schema/src/com/cloud/upgrade/dao/Upgrade420to421.java
----------------------------------------------------------------------
diff --git a/engine/schema/src/com/cloud/upgrade/dao/Upgrade420to421.java b/engine/schema/src/com/cloud/upgrade/dao/Upgrade420to421.java
index 6707eb9..27704e8 100755
--- a/engine/schema/src/com/cloud/upgrade/dao/Upgrade420to421.java
+++ b/engine/schema/src/com/cloud/upgrade/dao/Upgrade420to421.java
@@ -26,6 +26,7 @@ import java.sql.SQLException;
 import org.apache.log4j.Logger;
 
 import com.cloud.utils.exception.CloudRuntimeException;
+import com.cloud.utils.script.Script;
 
 public class Upgrade420to421 implements DbUpgrade {
     final static Logger s_logger = Logger.getLogger(Upgrade420to421.class);
@@ -33,7 +34,7 @@ public class Upgrade420to421 implements DbUpgrade {
 
     @Override
     public String[] getUpgradableVersionRange() {
-        return new String[] { "4.2.0" };
+        return new String[] { "4.2.0", "4.2.1" };
     }
 
     @Override
@@ -48,7 +49,12 @@ public class Upgrade420to421 implements DbUpgrade {
 
     @Override
     public File[] getPrepareScripts() {
-        return null;
+        String script = Script.findScript("", "db/schema-420to421.sql");
+        if (script == null) {
+            throw new CloudRuntimeException("Unable to find db/schema-420to421.sql");
+        }
+
+        return new File[] { new File(script) };
     }
 
     @Override

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/b63270f1/setup/db/db/schema-420to421.sql
----------------------------------------------------------------------
diff --git a/setup/db/db/schema-420to421.sql b/setup/db/db/schema-420to421.sql
new file mode 100644
index 0000000..1e6341e
--- /dev/null
+++ b/setup/db/db/schema-420to421.sql
@@ -0,0 +1,24 @@
+-- Licensed to the Apache Software Foundation (ASF) under one
+-- or more contributor license agreements.  See the NOTICE file
+-- distributed with this work for additional information
+-- regarding copyright ownership.  The ASF licenses this file
+-- to you under the Apache License, Version 2.0 (the
+-- "License"); you may not use this file except in compliance
+-- with the License.  You may obtain a copy of the License at
+--
+--   http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing,
+-- software distributed under the License is distributed on an
+-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+-- KIND, either express or implied.  See the License for the
+-- specific language governing permissions and limitations
+-- under the License.
+
+--;
+-- Schema upgrade from 4.2.0 to 4.2.1;
+--;
+
+
+INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Advanced', 'DEFAULT', 'management-server', 's3.multipart.enabled', 'true', 'enable s3 multipart upload');
+