Merge branch 'master' of github.com:fit2cloudrd/metersphere-server into master
This commit is contained in:
commit
dd0b474959
|
@ -183,6 +183,11 @@
|
|||
<version>42.2.14</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.oracle.database.jdbc</groupId>
|
||||
<artifactId>ojdbc8</artifactId>
|
||||
<version>19.7.0.0</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Zookeeper -->
|
||||
<dependency>
|
||||
|
|
|
@ -185,7 +185,7 @@ export class TestPlan extends DefaultTestElement {
|
|||
|
||||
props = props || {};
|
||||
this.boolProp("TestPlan.functional_mode", props.mode, false);
|
||||
this.boolProp("TestPlan.serialize_threadgroups", props.stg, false);
|
||||
this.boolProp("TestPlan.serialize_threadgroups", props.stg, true);
|
||||
this.boolProp("TestPlan.tearDown_on_shutdown", props.tos, true);
|
||||
this.stringProp("TestPlan.comments", props.comments);
|
||||
this.stringProp("TestPlan.user_define_classpath", props.classpath);
|
||||
|
|
|
@ -546,7 +546,7 @@ export class ConfigCenter extends BaseConfig {
|
|||
}
|
||||
|
||||
export class DatabaseConfig extends BaseConfig {
|
||||
static DRIVER_CLASS = ["com.mysql.jdbc.Driver", "com.microsoft.sqlserver.jdbc.SQLServerDriver", "org.postgresql.Driver"];
|
||||
static DRIVER_CLASS = ["com.mysql.jdbc.Driver", "com.microsoft.sqlserver.jdbc.SQLServerDriver", "org.postgresql.Driver", "oracle.jdbc.OracleDriver"];
|
||||
|
||||
constructor(options) {
|
||||
super();
|
||||
|
|
Loading…
Reference in New Issue