Skip to content

Commit

Permalink
fix(provider/aiven): fix regression on ACLs creation (#392)
Browse files Browse the repository at this point in the history
Fix: #392
  • Loading branch information
fhussonnois committed Mar 22, 2024
1 parent ddd2f00 commit 892d42e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public List<ChangeResponse<ResourceChange>> handleChanges(@NotNull List<Resource
return changes.stream()
.map(change -> executeAsync(
change,
() -> api.deleteKafkaAclEntry(getEntry(change, KafkaAclEntry.class).id()))
() -> api.addKafkaAclEntry(getEntry(change, KafkaAclEntry.class)))
)
.collect(Collectors.toList());
}
Expand Down

0 comments on commit 892d42e

Please sign in to comment.