Skip to content

Commit

Permalink
fix: swap SASL values passed for the status
Browse files Browse the repository at this point in the history
  • Loading branch information
wtrocki authored Mar 3, 2021
1 parent 6fdcc96 commit d0ca126
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public UpdateControl<ManagedKafkaConnection> createOrUpdateResource(
status.setUpdated(Instant.now().toString());
status.setBootstrapServerHost(bootStrapHost);
status.setServiceAccountSecretName(serviceAccountSecretName);
status.setSaslMechanism("SASL_SSL");
status.setSecurityProtocol("PLAINTEXT");
status.setSaslMechanism("PLAINTEXT");
status.setSecurityProtocol("SASL_SSL");

ConditionUtil.setAllConditionsTrue(resource.getStatus().getConditions());
} catch (ConditionAwareException e) {
Expand Down

0 comments on commit d0ca126

Please sign in to comment.