Commit 54c9dc1f97b62f1a041db91d052fc11d72f83675

Authored by Volodymyr Babak
1 parent f009c436

Attempt for test fix

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