Skip to content

Commit dcee429

Browse files
committed
Fix
1 parent 610d1f5 commit dcee429

38 files changed

+9
-12520
lines changed

microservice-transaction-sample-with-shared-cluster-with-jdbc/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ subprojects {
33
project.version = '1.0'
44

55
ext {
6-
scalarDbVersion = '3.13.0'
7-
grpcVersion = '1.65.0'
8-
protobufVersion = '3.24.4'
9-
picoCliVersion = '4.7.5'
10-
log4jVersion = '2.22.1'
6+
scalarDbVersion = '3.16.1'
7+
grpcVersion = '1.75.0'
8+
protobufVersion = '3.25.8'
9+
picoCliVersion = '4.7.7'
10+
log4jVersion = '2.25.2'
1111
annotationVersion = '1.3.2'
1212
}
1313

microservice-transaction-sample-with-shared-cluster-with-jdbc/docker-compose.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: "3.5"
21
services:
32
mysql:
43
image: mysql:8.0
@@ -31,7 +30,7 @@ services:
3130
retries: 6
3231
start_period: 30s
3332
scalardb-cluster-node:
34-
image: ghcr.io/scalar-labs/scalardb-cluster-node-byol-premium:3.13.0
33+
image: ghcr.io/scalar-labs/scalardb-cluster-node-byol-premium:3.16.1
3534
container_name: "scalardb-cluster-node-1"
3635
restart: always
3736
depends_on:

microservice-transaction-sample-with-shared-cluster-with-jdbc/order-service/src/main/java/sample/order/model/Order.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public static void put(Connection connection, String id, int customerId, long ti
2424
throws SQLException {
2525
try (PreparedStatement preparedStatement =
2626
connection.prepareStatement(
27-
"INSERT INTO order_service.orders (customer_id, order_id, timestamp) VALUES (?, ?, ?)")) {
27+
"INSERT INTO order_service.orders (customer_id, order_id, \"timestamp\") VALUES (?, ?, ?)")) {
2828
preparedStatement.setInt(1, customerId);
2929
preparedStatement.setString(2, id);
3030
preparedStatement.setLong(3, timestamp);

microservice-transaction-sample-with-shared-cluster-with-jdbc/rpc/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ protobuf {
2020
generateProtoTasks {
2121
all()*.plugins { grpc {} }
2222
}
23-
generatedFilesBaseDir = "$projectDir/src"
2423
}
2524

2625
archivesBaseName = "sample-rpc"

0 commit comments

Comments
 (0)