Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,7 @@ public enum MetadataVersion {
// Please move this comment when updating the LATEST_PRODUCTION constant.
//

// IBP_4_4_IV0 enables dead-letter queue support for share groups (KIP-1191). When this version
// is finalized, so will the DLQ support.
// IBP_4_4_IV0 enables dead-letter queue support for share groups (KIP-1191).
IBP_4_4_IV0(31, "4.4", "IV0", false),

// Add support for CIDR-based ACL host patterns (KIP-1276).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public enum ShareVersion implements FeatureVersion {

public static final String FEATURE_NAME = "share.version";

public static final ShareVersion LATEST_PRODUCTION = SV_1;
public static final ShareVersion LATEST_PRODUCTION = SV_2;

private final short featureLevel;
private final MetadataVersion bootstrapMetadataVersion;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public void testDescribeWithUnstableApiVersions(ClusterInstance cluster) {
outputWithoutEpoch(featuresWithoutUnstable.get(3))
);
assertFeatureOutput(
"share.version", "0", "1", "0",
"share.version", "0", "2", "0",
outputWithoutEpoch(featuresWithoutUnstable.get(4))
);
assertFeatureOutput(
Expand Down Expand Up @@ -296,7 +296,7 @@ public void testDescribeWithUnstableFeatureVersions(ClusterInstance cluster) {
outputWithoutEpoch(featuresWithoutUnstable.get(3))
);
assertFeatureOutput(
"share.version", "0", "1", "0",
"share.version", "0", "2", "0",
outputWithoutEpoch(featuresWithoutUnstable.get(4))
);
assertFeatureOutput(
Expand Down
Loading