Skip to content

Commit

Permalink
Fix Kafka test
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikriemer committed Dec 2, 2024
1 parent b07bb3b commit 46942df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ password.description=The password to authenticate with the broker
access-mode.title=Access Mode
access-mode.description=Unauthenticated or SASL/PLAIN

unauthenticated-plain.title=Unauthenticated Plain
unauthenticated-plain.title=PLAINTEXT
unauthenticated-plain.description=No authentication and plaintext

unauthenticated-ssl.title=Unauthenticated SSL
unauthenticated-ssl.title=SSL
unauthenticated-ssl.description=Using SSL with no authentication

sasl-plain.title=SASL/PLAIN
sasl-plain.title=SASL/PLAINTEXT
sasl-plain.description=Username and password, no encryption

sasl-ssl.title=SASL/SSL
Expand Down
4 changes: 2 additions & 2 deletions ui/cypress/tests/thirdparty/Kafka.smoke.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('Test Kafka Integration', () => {
const sink: PipelineElementInput = PipelineElementBuilder.create(
'kafka_publisher',
)
.addInput('radio', 'access-mode-unauthenticated_plain', '')
.addInput('radio', 'access-mode-plaintext', '')
.addInput('input', 'host', host)
.addInput(
'input',
Expand All @@ -48,7 +48,7 @@ describe('Test Kafka Integration', () => {
const adapter = AdapterBuilder.create('Apache_Kafka')
.setName('Kafka4')
.setTimestampProperty('timestamp')
.addProtocolInput('radio', 'access-mode-unauthenticated_plain', '')
.addProtocolInput('radio', 'access-mode-plaintext', '')
.addProtocolInput('input', 'host', host)
.addProtocolInput('input', 'port', port)
.addProtocolInput('click', 'sp-reload', '')
Expand Down

0 comments on commit 46942df

Please sign in to comment.