typo fix
This commit is contained in:
parent
1b3c131255
commit
121260afdb
2 changed files with 3 additions and 3 deletions
|
@ -185,7 +185,7 @@ public class AclsService {
|
||||||
}
|
}
|
||||||
|
|
||||||
//Write, Describe, Create permission on topics, Write, Describe on transactionalIds
|
//Write, Describe, Create permission on topics, Write, Describe on transactionalIds
|
||||||
//IDEMPOTENT_WRITE of cluster if idempotent is enabled
|
//IDEMPOTENT_WRITE on cluster if idempotent is enabled
|
||||||
private List<AclBinding> createProducerBindings(CreateProducerAclDTO request) {
|
private List<AclBinding> createProducerBindings(CreateProducerAclDTO request) {
|
||||||
List<AclBinding> bindings = new ArrayList<>();
|
List<AclBinding> bindings = new ArrayList<>();
|
||||||
bindings.addAll(
|
bindings.addAll(
|
||||||
|
|
|
@ -180,7 +180,7 @@ class AclsServiceTest {
|
||||||
).block();
|
).block();
|
||||||
|
|
||||||
//Write, Describe, Create permission on topics, Write, Describe on transactionalIds
|
//Write, Describe, Create permission on topics, Write, Describe on transactionalIds
|
||||||
//IDEMPOTENT_WRITE of cluster if idempotent is enabled (true)
|
//IDEMPOTENT_WRITE on cluster if idempotent is enabled (true)
|
||||||
Collection<AclBinding> createdBindings = (Collection<AclBinding>) createdCaptor.getValue();
|
Collection<AclBinding> createdBindings = (Collection<AclBinding>) createdCaptor.getValue();
|
||||||
assertThat(createdBindings)
|
assertThat(createdBindings)
|
||||||
.hasSize(6)
|
.hasSize(6)
|
||||||
|
@ -225,7 +225,7 @@ class AclsServiceTest {
|
||||||
).block();
|
).block();
|
||||||
|
|
||||||
//Write, Describe, Create permission on topics, Write, Describe on transactionalIds
|
//Write, Describe, Create permission on topics, Write, Describe on transactionalIds
|
||||||
//IDEMPOTENT_WRITE of cluster if idempotent is enabled (false)
|
//IDEMPOTENT_WRITE on cluster if idempotent is enabled (false)
|
||||||
Collection<AclBinding> createdBindings = (Collection<AclBinding>) createdCaptor.getValue();
|
Collection<AclBinding> createdBindings = (Collection<AclBinding>) createdCaptor.getValue();
|
||||||
assertThat(createdBindings)
|
assertThat(createdBindings)
|
||||||
.hasSize(5)
|
.hasSize(5)
|
||||||
|
|
Loading…
Add table
Reference in a new issue