Commit 54c9dc1f97b62f1a041db91d052fc11d72f83675

Authored by Volodymyr Babak
1 parent f009c436

Attempt for test fix

@@ -298,6 +298,8 @@ spring.resources.chain: @@ -298,6 +298,8 @@ spring.resources.chain:
298 content: 298 content:
299 enabled: "true" 299 enabled: "true"
300 300
  301 +spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation: "true"
  302 +
301 # HSQLDB DAO Configuration 303 # HSQLDB DAO Configuration
302 spring: 304 spring:
303 data: 305 data:
@@ -4,6 +4,7 @@ database.entities.type=sql @@ -4,6 +4,7 @@ database.entities.type=sql
4 sql.ts_inserts_executor_type=fixed 4 sql.ts_inserts_executor_type=fixed
5 sql.ts_inserts_fixed_thread_pool_size=10 5 sql.ts_inserts_fixed_thread_pool_size=10
6 6
  7 +spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
7 spring.jpa.show-sql=false 8 spring.jpa.show-sql=false
8 spring.jpa.hibernate.ddl-auto=validate 9 spring.jpa.hibernate.ddl-auto=validate
9 spring.jpa.database-platform=org.hibernate.dialect.HSQLDialect 10 spring.jpa.database-platform=org.hibernate.dialect.HSQLDialect
@@ -442,6 +442,12 @@ @@ -442,6 +442,12 @@
442 <groupId>org.springframework.boot</groupId> 442 <groupId>org.springframework.boot</groupId>
443 <artifactId>spring-boot-starter-data-jpa</artifactId> 443 <artifactId>spring-boot-starter-data-jpa</artifactId>
444 <version>${spring-boot.version}</version> 444 <version>${spring-boot.version}</version>
  445 + <exclusions>
  446 + <exclusion>
  447 + <groupId>net.bytebuddy</groupId>
  448 + <artifactId>byte-buddy</artifactId>
  449 + </exclusion>
  450 + </exclusions>
445 </dependency> 451 </dependency>
446 <dependency> 452 <dependency>
447 <groupId>org.apache.kafka</groupId> 453 <groupId>org.apache.kafka</groupId>