Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
shinyano committed May 11, 2024
1 parent 546b21d commit d19350d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public MySQLCapacityExpansionIT() {
StorageEngineType.relational,
"engine:mysql, username:root,"
+ "meta_properties_path:dataSources/relational/src/main/resources/mysql-meta-template.properties",
new MySQLHistoryDataGenerator());
new MySQLHistoryDataGenerator());
ConfLoader conf = new ConfLoader(Controller.CONFIG_FILE);
DBConf dbConf = conf.loadDBConf(conf.getStorageType());
Constant.oriPort = dbConf.getDBCEPortMap().get(Constant.ORI_PORT_NAME);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ public class PostgreSQLCapacityExpansionIT extends BaseCapacityExpansionIT {
private static final Logger LOGGER = LoggerFactory.getLogger(PostgreSQLCapacityExpansionIT.class);

public PostgreSQLCapacityExpansionIT() {
super(StorageEngineType.relational, "engine:postgresql, username:postgres, password:postgres", new PostgreSQLHistoryDataGenerator());
super(
StorageEngineType.relational,
"engine:postgresql, username:postgres, password:postgres",
new PostgreSQLHistoryDataGenerator());
ConfLoader conf = new ConfLoader(Controller.CONFIG_FILE);
DBConf dbConf = conf.loadDBConf(conf.getStorageType());
Constant.oriPort = dbConf.getDBCEPortMap().get(Constant.ORI_PORT_NAME);
Expand Down

0 comments on commit d19350d

Please sign in to comment.