e2e: drop single node hybrid configurations (#6737)

This commit is contained in:
Sam Kleinman
2021-07-20 11:23:51 -04:00
committed by GitHub
parent 639e145729
commit 2030875056
+6
View File
@@ -62,6 +62,12 @@ func Generate(r *rand.Rand, opts Options) ([]e2e.Manifest, error) {
if err != nil {
return nil, err
}
if len(manifest.Nodes) == 1 {
if opt["p2p"] == HybridP2PMode {
continue
}
}
manifests = append(manifests, manifest)
}
return manifests, nil