Skip to content

Commit f0588eb

Browse files
committed
Fix pipeline
The versioning scheme for the commercial image changed from calver to semver. For tanzu-rabbitmq:1, streams are not supported.
1 parent 8836b1f commit f0588eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system_tests/system_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ CONSOLE_LOG=new`
572572
// github.com/go-stomp/stomp does not support STOMP-over-WebSockets
573573

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

0 commit comments

Comments
 (0)