We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4697c1e + 18dde12 commit aab3901Copy full SHA for aab3901
src/main/java/io/camunda/tasklist/CamundaTaskListClient.java
@@ -60,11 +60,13 @@ protected CamundaTaskListClient(
60
: "zeebeClient must not be null";
61
this.properties = properties;
62
this.apiClient.updateBaseUri(properties.getTaskListUrl());
63
+ this.zeebeClient = zeebeClient;
64
+
65
+ authenticate();
66
this.taskApi = new TaskApi(this.apiClient);
67
this.formApi = new FormApi(this.apiClient);
68
this.variablesApi = new VariablesApi(this.apiClient);
- this.zeebeClient = zeebeClient;
- authenticate();
69
70
}
71
72
public static CamundaTaskListClientBuilder builder() {
0 commit comments