Skip to content

Commit

Permalink
kversion: ignore API keys 74,75 when guessing versions
Browse files Browse the repository at this point in the history
These are in Kraft only, and are two requests from two separate KIPs
that aren't fully supported yet. Not sure why only these two were
stabilized.
  • Loading branch information
twmb committed Oct 15, 2024
1 parent 0b6551b commit d613190
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/kversion/kversion.go
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ func (vs *Versions) versionGuess(opts ...VersionGuessOpt) guess {
//
// TODO: add introduced-version to differentiate some specific
// keys.
skipKeys: []int16{4, 5, 6, 7, 27, 52, 53, 54, 55, 56, 57, 58, 59, 62, 63, 64, 67},
skipKeys: []int16{4, 5, 6, 7, 27, 52, 53, 54, 55, 56, 57, 58, 59, 62, 63, 64, 67, 74, 75},
}
for _, opt := range opts {
opt.apply(&cfg)
Expand Down

0 comments on commit d613190

Please sign in to comment.