From 4c71694609124323db286a2f5bf47c0d24b993c3 Mon Sep 17 00:00:00 2001 From: Valentin Zickner Date: Thu, 26 Sep 2024 11:03:04 +0200 Subject: [PATCH] change Flowable Cloud to Flowable Trial --- README.md | 4 ++-- .../worker/spring/boot/ExternalWorkerRestProperties.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0d52f05..63b551a 100644 --- a/README.md +++ b/README.md @@ -97,9 +97,9 @@ There are two ways that the application can be authenticated with a Flowable ins * Using HTTP Basic authentication with a provided username and password, as shown in the example above. * Using HTTP Bearer authentication with a provided access token. In that case the `.basic` properties are replaced by the `flowable.external.worker.rest.authentication.bearer.token=myTokenValue` property. -### Flowable Cloud +### Flowable Trial -Connecting an external worker to the Flowable Cloud is simpler, since everything is pre-configured. +Connecting an external worker to the Flowable Trial is simpler, since everything is pre-configured. It's required to either use the user credentials or to pre-configure a personal access token, for example: diff --git a/workers/spring/autoconfigure/src/main/java/org/flowable/external/worker/spring/boot/ExternalWorkerRestProperties.java b/workers/spring/autoconfigure/src/main/java/org/flowable/external/worker/spring/boot/ExternalWorkerRestProperties.java index 42e805b..0cb3cc1 100644 --- a/workers/spring/autoconfigure/src/main/java/org/flowable/external/worker/spring/boot/ExternalWorkerRestProperties.java +++ b/workers/spring/autoconfigure/src/main/java/org/flowable/external/worker/spring/boot/ExternalWorkerRestProperties.java @@ -26,7 +26,7 @@ public class ExternalWorkerRestProperties implements InitializingBean { /** * The base URL of the Flowable application. */ - private String baseUrl = "https://cloud.flowable.com/work/"; + private String baseUrl = "https://trial.flowable.com/work/"; /** * The context path of the External Job REST API