Skip to content

Commit

Permalink
Merge pull request #492 from jenkinsci/fix-group-jmespath-creation
Browse files Browse the repository at this point in the history
pass the correct argument to create the group filed JMESPath
  • Loading branch information
michael-doubez authored Dec 24, 2024
2 parents 717b6e1 + e4f2c83 commit d4c54f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ private Object applyJMESPath(Expression<Object> expression, Object map) {
@DataBoundSetter
public void setGroupsFieldName(String groupsFieldName) {
this.groupsFieldName = Util.fixEmptyAndTrim(groupsFieldName);
this.groupsFieldExpr = this.compileJMESPath(groupsFieldName, "groups field");
this.groupsFieldExpr = this.compileJMESPath(this.groupsFieldName, "groups field");
}

@DataBoundSetter
Expand Down

0 comments on commit d4c54f1

Please sign in to comment.