Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading