Skip to content

Commit 9765cec

Browse files
committed
Use databaseSchemaUpdate true in flowable-http module to make sure tests run properly on different DBs
1 parent 533974b commit 9765cec

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

modules/flowable-http/src/test/resources/flowable.cfg.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<property name="jdbcPassword" value="${jdbc.password:}" />
1313

1414
<!-- Database configurations -->
15-
<property name="databaseSchemaUpdate" value="drop-create"/>
15+
<property name="databaseSchemaUpdate" value="true"/>
1616

1717
<!-- job executor configurations -->
1818
<property name="asyncExecutorActivate" value="false"/>

modules/flowable-http/src/test/resources/flowableApacheHttpClient5.cfg.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<property name="jdbcPassword" value="${jdbc.password:}"/>
1616

1717
<!-- Database configurations -->
18-
<property name="databaseSchemaUpdate" value="drop-create"/>
18+
<property name="databaseSchemaUpdate" value="true"/>
1919

2020
<!-- job executor configurations -->
2121
<property name="asyncExecutorActivate" value="false"/>

modules/flowable-http/src/test/resources/flowableDefaultParallelInSameTransaction.cfg.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<property name="jdbcPassword" value="${jdbc.password:}"/>
1616

1717
<!-- Database configurations -->
18-
<property name="databaseSchemaUpdate" value="drop-create"/>
18+
<property name="databaseSchemaUpdate" value="true"/>
1919

2020
<!-- job executor configurations -->
2121
<property name="asyncExecutorActivate" value="false"/>

modules/flowable-http/src/test/resources/flowableSpringWebClient.cfg.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<property name="jdbcPassword" value="${jdbc.password:}"/>
1616

1717
<!-- Database configurations -->
18-
<property name="databaseSchemaUpdate" value="drop-create"/>
18+
<property name="databaseSchemaUpdate" value="true"/>
1919

2020
<!-- job executor configurations -->
2121
<property name="asyncExecutorActivate" value="false"/>

modules/flowable-http/src/test/resources/org/flowable/http/cmmn/CmmnHttpTaskParallelInSameTransactionTest.cfg.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<ref bean="dataSource"/>
2929
</list>
3030
</property>
31-
<property name="databaseSchemaUpdate" value="drop-create" />
31+
<property name="databaseSchemaUpdate" value="true" />
3232

3333
<property name="httpClientConfig" ref="httpClientConfig"/>
3434
</bean>

modules/flowable-http/src/test/resources/org/flowable/http/cmmn/CmmnHttpTaskTest.cfg.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<ref bean="dataSource"/>
2929
</list>
3030
</property>
31-
<property name="databaseSchemaUpdate" value="drop-create" />
31+
<property name="databaseSchemaUpdate" value="true" />
3232

3333
<property name="httpClientConfig" ref="httpClientConfig"/>
3434
</bean>

0 commit comments

Comments
 (0)