Skip to content

Commit

Permalink
fix default hostname of Flowable Work
Browse files Browse the repository at this point in the history
  • Loading branch information
vzickner committed Nov 1, 2023
1 parent 86c3103 commit 24a20c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/external-worker-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class ExternalWorkerClient {
constructor(params: ExternalWorkerClientParams) {
const restClientParams = {
...params,
flowableHost: params.flowableHost || 'https://cloud.flowable.com/work/',
flowableHost: params.flowableHost || 'https://cloud.flowable.com/work',
workerId: params.workerId || 'js-worker-' + Math.random().toString(26).slice(2)
}
this._restClient = new FlowableExternalWorkerRestClient(restClientParams);
Expand Down

0 comments on commit 24a20c7

Please sign in to comment.