Skip to content

Commit aab3901

Browse files
authored
Merge pull request #89 from jancalve/fix-request-interceptor-on-operations
Fix request interceptors not being appplied
2 parents 4697c1e + 18dde12 commit aab3901

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/main/java/io/camunda/tasklist/CamundaTaskListClient.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,13 @@ protected CamundaTaskListClient(
6060
: "zeebeClient must not be null";
6161
this.properties = properties;
6262
this.apiClient.updateBaseUri(properties.getTaskListUrl());
63+
this.zeebeClient = zeebeClient;
64+
65+
authenticate();
6366
this.taskApi = new TaskApi(this.apiClient);
6467
this.formApi = new FormApi(this.apiClient);
6568
this.variablesApi = new VariablesApi(this.apiClient);
66-
this.zeebeClient = zeebeClient;
67-
authenticate();
69+
6870
}
6971

7072
public static CamundaTaskListClientBuilder builder() {

0 commit comments

Comments
 (0)