File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,13 @@ func registerRebalanceLoad(r registry.Registry) {
110
110
),
111
111
// Only use the latest version of each release to work around #127029.
112
112
mixedversion .AlwaysUseLatestPredecessors ,
113
+ // There is a known edge case in the mixed version framework when there
114
+ // is only one upgrade that can run user hooks (25.1 -> 25.2) and the
115
+ // fromVersion (25.1) is skippable. The framework always enforces at
116
+ // least one skip upgrade if enabled (24.3 -> 25.2), which would lead to
117
+ // zero upgrades running user hooks. Instead, disable skip upgrades.
118
+ // TODO(#151408): Remove when the framework handles this case.
119
+ mixedversion .DisableSkipVersionUpgrades ,
113
120
// There have been many performance improvements in versions 25.1.0+.
114
121
// In particular, the CPU utilization attributed to SQL can vary
115
122
// significantly between versions, which can lead to flakiness in these
You can’t perform that action at this time.
0 commit comments