Skip to content

Commit

Permalink
Merge pull request #1 from gmunozfe/bump-h2-2.2.220
Browse files Browse the repository at this point in the history
[bump h2-200] Override default datasource url
  • Loading branch information
tkobayas committed Jul 28, 2023
2 parents 966f068 + 06591d7 commit 500cf4c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ server.port=8090
spring.jpa.properties.hibernate.hbm2ddl.auto=create
spring.jpa.properties.hibernate.show_sql=false

#override datasource url to skip VALUE as a keyword for embedded h2
spring.datasource.url=jdbc:h2:mem:jbpm-db;MODE=LEGACY;NON_KEYWORDS=VALUE

# Taken from https://docs.spring.io/spring-boot/docs/2.4.0-M2/reference/htmlsingle/#common-application-properties
# Used in Kafka tests where publish blocking connection timeout (max.block.ms) is 60 seconds, same as default
# transaction timeout for nayarana. If this timeout is not increased, following exception is raised:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ server.port=8090
spring.jpa.properties.hibernate.hbm2ddl.auto=create
spring.jpa.properties.hibernate.show_sql=false


#override datasource url to skip VALUE as a keyword for embedded h2
spring.datasource.url=jdbc:h2:mem:jbpm-db;MODE=LEGACY;NON_KEYWORDS=VALUE

# Taken from https://docs.spring.io/spring-boot/docs/2.4.0-M2/reference/htmlsingle/#common-application-properties
# Used in Kafka tests where publish blocking connection timeout (max.block.ms) is 60 seconds, same as default
# transaction timeout for nayarana. If this timeout is not increased, following exception is raised:
Expand Down

0 comments on commit 500cf4c

Please sign in to comment.