Skip to content

Commit

Permalink
fix: fix format string #3278 (#3281)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgomer2001 authored Dec 10, 2022
1 parent 53a8bd3 commit 7104d9c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public String getAgamaFlowDn(String flowName) {
if (StringUtils.isBlank(flowName)) {
return AGAMA_FLOWS_BASE;
}
return String.format(String.format("%s,%s", Flow.ATTR_NAMES.QNAME, flowName, AGAMA_FLOWS_BASE));
return String.format("%s=%s,%s", Flow.ATTR_NAMES.QNAME, flowName, AGAMA_FLOWS_BASE);
}

public AgamaConfiguration getAgamaConfiguration() {
Expand Down

0 comments on commit 7104d9c

Please sign in to comment.