Skip to content

Commit

Permalink
Fix pipeline
Browse files Browse the repository at this point in the history
The versioning scheme for the commercial image changed from calver to
semver.
For tanzu-rabbitmq:1, streams are not supported.
  • Loading branch information
ansd committed Apr 28, 2021
1 parent 8836b1f commit f0588eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system_tests/system_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ CONSOLE_LOG=new`
// github.com/go-stomp/stomp does not support STOMP-over-WebSockets

By("stream")
if strings.Contains(cluster.Spec.Image, ":3.8") || strings.Contains(cluster.Spec.Image, "vmware-tanzu-rabbitmq:2020") {
if strings.Contains(cluster.Spec.Image, ":3.8") || strings.HasSuffix(cluster.Spec.Image, "tanzu-rabbitmq:1") {
Skip("rabbitmq_stream plugin is not supported by RabbitMQ image " + cluster.Spec.Image)
}
publishAndConsumeStreamMsg(ctx, hostname, rabbitmqNodePort(ctx, clientSet, cluster, "stream"), username, password)
Expand Down

0 comments on commit f0588eb

Please sign in to comment.