Skip to content

Commit 7ec0248

Browse files
authored
Merge branch 'main' into fix/sync-updated-since-date-update
2 parents fee62e6 + 1a2124c commit 7ec0248

22 files changed

Lines changed: 150 additions & 57 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ name: "CodeQL"
1313

1414
on:
1515
push:
16-
branches: [ main, master, development, release/*, hotfix/* ]
16+
branches: [ main, master, development, release/*, hotfix/*, fix/* ]
1717
pull_request:
1818
types:
1919
- opened

application-commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>life.qbic.datamanager</groupId>
77
<artifactId>datamanager</artifactId>
8-
<version>1.12.6</version>
8+
<version>1.12.7</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>application-commons</artifactId>

broadcasting/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>life.qbic.datamanager</groupId>
77
<artifactId>datamanager</artifactId>
8-
<version>1.12.6</version>
8+
<version>1.12.7</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>broadcasting</artifactId>

datamanager-app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>life.qbic.datamanager</groupId>
1313
<artifactId>datamanager</artifactId>
14-
<version>1.12.6</version>
14+
<version>1.12.7</version>
1515
</parent>
1616

1717
<repositories>

datamanager-app/src/main/resources/application.properties

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,3 +224,11 @@ spring.messages.basename=messages.error-messages, messages.toast-notifications,
224224
# you always have to escape single quotes by another single quote ' -> ''
225225
# https://www.mscharhag.com/java/resource-bundle-single-quote-escaping for reference
226226
spring.messages.always-use-message-format=true
227+
###############################################################################
228+
################### Raw Data Sync #############################################
229+
# Batch size for each remote sync query iteration.
230+
# Reduce (e.g. to 200) during large backlog re-syncs to lower database lock contention.
231+
qbic.sync.raw-data.batch-size=${SYNC_RAW_DATA_BATCH_SIZE:1000}
232+
# Maximum wall-clock duration in milliseconds for a single scheduled sync job execution.
233+
# Must remain smaller than the ShedLock lockAtMostFor value (currently PT40S = 40000ms).
234+
qbic.sync.raw-data.max-duration-ms=${SYNC_RAW_DATA_MAX_DURATION_MS:10000}

datamanager-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>life.qbic.datamanager</groupId>
77
<artifactId>datamanager-bom</artifactId>
8-
<version>1.12.6</version>
8+
<version>1.12.7</version>
99
<packaging>pom</packaging>
1010
<name>DataManager BOM</name>
1111
<description>Bill of Materials for DataManager artifacts</description>

domain-concept/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>life.qbic.datamanager</groupId>
88
<artifactId>datamanager</artifactId>
9-
<version>1.12.6</version>
9+
<version>1.12.7</version>
1010
</parent>
1111

1212
<artifactId>domain-concept</artifactId>

email-service-provider/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>life.qbic.datamanager</groupId>
88
<artifactId>datamanager</artifactId>
9-
<version>1.12.6</version>
9+
<version>1.12.7</version>
1010
</parent>
1111

1212
<artifactId>email-service-provider</artifactId>

finances-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>life.qbic.datamanager</groupId>
88
<artifactId>datamanager</artifactId>
9-
<version>1.12.6</version>
9+
<version>1.12.7</version>
1010
</parent>
1111

1212
<artifactId>finances-api</artifactId>

finances-infrastructure/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>life.qbic.datamanager</groupId>
88
<artifactId>datamanager</artifactId>
9-
<version>1.12.6</version>
9+
<version>1.12.7</version>
1010
</parent>
1111

1212
<artifactId>finances-infrastructure</artifactId>
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>life.qbic.datamanager</groupId>
2222
<artifactId>finances</artifactId>
23-
<version>1.12.6</version>
23+
<version>1.12.7</version>
2424
<scope>compile</scope>
2525
</dependency>
2626
<dependency>

0 commit comments

Comments
 (0)