Skip to content

Commit

Permalink
Fixing syntax error
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Palis <[email protected]>
  • Loading branch information
joshpalis committed Aug 15, 2024
1 parent 4e525ab commit ca6b183
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public PlainActionFuture<WorkflowData> execute(
} else {
// Create index setting configuration can be a mix of flattened or expanded settings
// prepend index. to ensure successful setting comparison
updatedSettings.entrySet().stream().map(x -> {
updatedSettings.entrySet().stream().forEach(x -> {
if (!x.getKey().startsWith("index.")) {
flattenedSettings.put("index." + x.getKey(), x.getValue());
} else {
Expand Down

0 comments on commit ca6b183

Please sign in to comment.