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

This commit is contained in:
Min Chen 2013-10-04 17:27:04 -07:00
parent 975422a950
commit b63270f1d3
2 changed files with 32 additions and 2 deletions

View File

@ -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

View File

@ -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');