Skip to content

Commit

Permalink
change descriptorString to name
Browse files Browse the repository at this point in the history
  • Loading branch information
chDame committed Jun 15, 2022
1 parent 58bc195 commit 0229a74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/camunda/operate/CamundaOperateClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ private <T> T get(Long key, Class<T> resultType) throws OperateException {
try {
return JsonUtils.toResult(executeQuery(httpGet), resultType);
} catch (IOException e) {
throw new OperateException("Error executing get for (key : " + key + ")" + resultType.descriptorString(),
throw new OperateException("Error executing get for (key : " + key + ")" + resultType.getName(),
e);
}
}
Expand Down

0 comments on commit 0229a74

Please sign in to comment.