You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Venom 1.2.0 fails to connect redpanda kafka broker with the following message: step #1-0: Assertion "result.err ShouldBeEmpty" failed. expected 'error instantiate consumer err: kafka: client has run out of available brokers to talk to: EOF' to be empty but it wasn't
Venom 1.2.0 fails to connect redpanda kafka broker with the following message:
step #1-0: Assertion "result.err ShouldBeEmpty" failed. expected 'error instantiate consumer err: kafka: client has run out of available brokers to talk to: EOF' to be empty but it wasn't
Example:
`
testcases:
steps:
clientType: consumer
withAvro: true
markOffset: true
timeout: 15
waitFor: 10
messageLimit: 1
groupID: venom-consumer
addrs:
schemaRegistryAddr: "{{.kafkaSchemaRegistryURL}}"
topics:
assertions:
`
Workaround:
Set kafkaVersion:"2.0.0" as in
`
testcases:
steps:
clientType: consumer
kafkaVersion: "2.0.0"
withAvro: true
markOffset: true
timeout: 15
waitFor: 10
messageLimit: 1
groupID: venom-consumer
addrs:
schemaRegistryAddr: "{{.kafkaSchemaRegistryURL}}"
topics:
assertions:
`
The text was updated successfully, but these errors were encountered: