diff --git a/tests/framework/e2e/cluster.go b/tests/framework/e2e/cluster.go index 3da0ff9a8f2..f274441099e 100644 --- a/tests/framework/e2e/cluster.go +++ b/tests/framework/e2e/cluster.go @@ -640,6 +640,12 @@ func (cfg *EtcdProcessClusterConfig) EtcdServerProcessConfig(tb testing.TB, i in if flag == "experimental-snapshot-catchup-entries" && !CouldSetSnapshotCatchupEntries(execPath) { continue } + if flag == "experimental-compaction-batch-limit" { + continue + } + if flag == "compaction-batch-limit" { + flag = "experimental-compaction-batch-limit" + } args = append(args, fmt.Sprintf("--%s=%s", flag, value)) } envVars := map[string]string{}