Skip to content

Commit

Permalink
fix: fix format string #3278
Browse files Browse the repository at this point in the history
  • Loading branch information
jgomer2001 committed Dec 9, 2022
1 parent 7388690 commit d583b10
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 d583b10

Please sign in to comment.