Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
fix boolean type
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardW98 authored and openshift-merge-robot committed Aug 1, 2023
1 parent 33bc735 commit 61f1753
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ public void runRestartWorkFlowComplexMultipleTimes() throws ApiException, Interr
assertEquals(WorkFlowStatusResponseDTO.StatusEnum.COMPLETED, workFlowStatusResponseDTO.getStatus());
log.info("Onboarding workflow execution completed with status {}", workFlowStatusResponseDTO.getStatus());
List<UUID> restartedIds = new ArrayList<>(5);
for (int i = 1; i <= 5; i++) {
for (int i = 1; i <= 20; i++) {
log.info("******** Restarting the onboarding WorkFlow - {} ******** ", i);
WorkFlowExecutionResponseDTO restartedWorkFlowResponseDTO = workflowApi
.restartWorkFlow(workFlowResponseDTO.getWorkFlowExecutionId());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
Expand All @@ -31,7 +32,8 @@
* @author Richard Wang (Github: richardW98)
*
*/
@SpringBootApplication(scanBasePackages = { "com.redhat.parodos", "${scan.packages}" })
@SpringBootApplication(scanBasePackages = { "com.redhat.parodos", "${scan.packages}" },
exclude = { UserDetailsServiceAutoConfiguration.class })
@EnableAsync(proxyTargetClass = true)
@EnableScheduling
@EnableWebSecurity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</column>
<column name="password" type="varchar(255)"/>
<column name="authority" type="varchar(255)"/>
<column name="enabled" type="tinyint"/>
<column name="enabled" type="BOOLEAN"/>
<column name="first_name" type="varchar(255)"/>
<column name="last_name" type="varchar(255)"/>
<column name="email" type="varchar(255)"/>
Expand Down

0 comments on commit 61f1753

Please sign in to comment.