summaryrefslogtreecommitdiffstats
path: root/integration-test/src/test/resources/application.yml
diff options
context:
space:
mode:
authorLee Anjella Macabuhay <lee.anjella.macabuhay@est.tech>2024-01-11 09:28:17 +0000
committerGerrit Code Review <gerrit@onap.org>2024-01-11 09:28:17 +0000
commit8092359e5a03ebfd1fe5afaee3e6e64fdba082d3 (patch)
treeef24c6f2f6f5261ab6ac3945ce2ef99695ff45a4 /integration-test/src/test/resources/application.yml
parent958248ec5b935c6608a0f74c8aaf9627a16e2534 (diff)
parent36b81b27703d298f016180a71c85113d5c90c6b1 (diff)
Merge "Enable hibernate write batching"
Diffstat (limited to 'integration-test/src/test/resources/application.yml')
-rw-r--r--integration-test/src/test/resources/application.yml14
1 files changed, 8 insertions, 6 deletions
diff --git a/integration-test/src/test/resources/application.yml b/integration-test/src/test/resources/application.yml
index 0aefac83f..55560aa62 100644
--- a/integration-test/src/test/resources/application.yml
+++ b/integration-test/src/test/resources/application.yml
@@ -1,5 +1,5 @@
# ============LICENSE_START=======================================================
-# Copyright (C) 2023 Nordix Foundation.
+# Copyright (C) 2023-2024 Nordix Foundation.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -20,11 +20,13 @@ spring:
ddl-auto: create
show-sql: false
properties:
- hibernate:
- enable_lazy_load_no_trans: true
- dialect: org.hibernate.dialect.PostgreSQLDialect
- format_sql: true
- show_sql: false
+ hibernate.enable_lazy_load_no_trans: true
+ hibernate.dialect: org.hibernate.dialect.PostgreSQLDialect
+ hibernate.format_sql: true
+ hibernate.show_sql: false
+ # Please ensure these values match those used in cps-application/src/main/resources/application.yml
+ hibernate.id.new_generator_mappings: true
+ hibernate.jdbc.batch_size: 100
datasource:
url: ${DB_URL}