Skip to content

Commit 27032e4

Browse files
authored
Data Streams: Fix flaky tests (#17781)
* Support virtual stream IDs in median and quote streams. * Move job-handling changesets to a submodule. * Add support virtual stream IDs. * lint * Better switch. * lint * Fix flaky tests. * Force CI rerun.
1 parent d2099cf commit 27032e4

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

deployment/data-streams/changeset/jobs/jd_distribute_llo_jobs_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222

2323
func TestDistributeLLOJobSpecs(t *testing.T) {
2424
t.Parallel()
25-
t.Skip("Skipping testing in CI environment") // flaking on CI
25+
// force CI rerun
2626

2727
env := testutil.NewMemoryEnvV2(t, testutil.MemoryEnvConfig{
2828
ShouldDeployMCMS: false,

deployment/data-streams/changeset/jobs/jd_distribute_stream_jobs_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import (
2222

2323
func TestDistributeStreamJobSpecs(t *testing.T) {
2424
t.Parallel()
25-
t.Skip("Skipping testing in CI environment") // flaking on CI
2625

2726
env := testutil.NewMemoryEnvV2(t, testutil.MemoryEnvConfig{
2827
ShouldDeployMCMS: false,

deployment/data-streams/changeset/testutil/test_helpers.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -269,10 +269,6 @@ func GetNodeLabels(donID uint64, donName string, env string) []*ptypes.Label {
269269
{
270270
Key: utils.DonIDLabel(donID, donName),
271271
},
272-
{
273-
Key: devenv.LabelNodeTypeKey,
274-
Value: pointer.To(devenv.LabelNodeTypeValuePlugin),
275-
},
276272
{
277273
Key: devenv.LabelEnvironmentKey,
278274
Value: pointer.To(env),

0 commit comments

Comments
 (0)