From 771f390bd516f6f7dfd5ea4457556ee37b9eeab5 Mon Sep 17 00:00:00 2001 From: borisov Date: Fri, 8 May 2020 12:39:07 +0300 Subject: [PATCH] examples update 1.0.2 --- client/build.gradle | 2 +- client/src/main/resources/application.properties | 14 +++++++++----- server/build.gradle | 2 +- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/client/build.gradle b/client/build.gradle index dfda4bb..14acf14 100644 --- a/client/build.gradle +++ b/client/build.gradle @@ -12,7 +12,7 @@ sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 ext { - grpcClientVersion = "1.0.0" + grpcClientVersion = "1.0.2" } configurations { diff --git a/client/src/main/resources/application.properties b/client/src/main/resources/application.properties index 95abfce..0d85222 100644 --- a/client/src/main/resources/application.properties +++ b/client/src/main/resources/application.properties @@ -1,5 +1,9 @@ -grpc.address: localhost:6565 -grpc.worker-id: exampleWorker -grpc.use-priority: true -grpc.lock-duration: 5000 -grpc.auto-start: true \ No newline at end of file +grpc.address=localhost:6565 +grpc.worker-id=exampleWorker +grpc.use-priority=true +grpc.lock-duration=5000 +grpc.auto-start=true +grpc.max-tasks=1 +grpc.async=true + +logging.level.root=info \ No newline at end of file diff --git a/server/build.gradle b/server/build.gradle index 5c54c58..b06f57c 100644 --- a/server/build.gradle +++ b/server/build.gradle @@ -11,7 +11,7 @@ sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 ext { - grpcServerVersion = "1.0.0" + grpcServerVersion = "1.0.2" camundaVersion = "7.12.0" camundaSpringBootVersion = "3.4.0" camundaLoggingVersion = "1.9.0"