Skip to content

Commit

Permalink
Merge #86794
Browse files Browse the repository at this point in the history
86794: changefeedccl: Disable metamorphic mux rangefeed. r=miretskiy a=miretskiy

Metamorphic mux rangefeed setting is suspected to cause
test flakiness.  Disable it.

Release justification: test only change
Release note: None

Co-authored-by: Yevgeniy Miretskiy <[email protected]>
  • Loading branch information
craig[bot] and Yevgeniy Miretskiy committed Aug 24, 2022
2 parents ba62be7 + 7a5d542 commit fe11e4b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion pkg/ccl/changefeedccl/changefeedbase/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ go_library(
"//pkg/sql",
"//pkg/sql/catalog/descpb",
"//pkg/sql/flowinfra",
"//pkg/util",
"@com_github_cockroachdb_errors//:errors",
],
)
Expand Down
3 changes: 1 addition & 2 deletions pkg/ccl/changefeedccl/changefeedbase/settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import (
"time"

"github.com/cockroachdb/cockroach/pkg/settings"
"github.com/cockroachdb/cockroach/pkg/util"
"github.com/cockroachdb/errors"
)

Expand Down Expand Up @@ -221,5 +220,5 @@ var UseMuxRangeFeed = settings.RegisterBoolSetting(
settings.TenantWritable,
"changefeed.mux_rangefeed.enabled",
"if true, changefeed uses multiplexing rangefeed RPC",
util.ConstantWithMetamorphicTestBool("changefeed.mux_rangefeed.enabled", false),
false,
)

0 comments on commit fe11e4b

Please sign in to comment.