Skip to content

Commit a2d5c55

Browse files
committed
changefeedccl: omit kafka sink for test running on ibm
We saw this test fail with the kafka sink on s390x, even though that architecture is incompatible with and should not be running kafka. Exclude kafka from this test. Epic: none Fixes: #152487 Release note: None
1 parent 161d59e commit a2d5c55

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/ccl/changefeedccl/protected_timestamps_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,8 @@ func TestChangefeedUpdateProtectedTimestamp(t *testing.T) {
154154
}
155155
}
156156

157-
cdcTestWithSystem(t, testFn, feedTestEnterpriseSinks)
157+
// Skip kafka sink because it's not compatible with s390x/IBM architecture
158+
cdcTestWithSystem(t, testFn, feedTestEnterpriseSinks, feedTestOmitSinks("kafka"))
158159
}
159160

160161
// TestChangefeedProtectedTimestamps asserts the state of changefeed PTS records

0 commit comments

Comments
 (0)