node: cleanup pex initialization (#6467)

This commit is contained in:
Sam Kleinman
2021-05-14 10:05:59 -04:00
committed by GitHub
parent 15a67b37d8
commit fa891c5a4b
5 changed files with 67 additions and 56 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ var (
nodeABCIProtocols = uniformChoice{"unix", "tcp", "builtin"} // "grpc"
nodePrivvalProtocols = uniformChoice{"file", "unix", "tcp", "grpc"}
// FIXME: v2 disabled due to flake
nodeFastSyncs = uniformChoice{"", "v0"} // "v2"
nodeFastSyncs = uniformChoice{"v0"} // "v2"
nodeStateSyncs = uniformChoice{false, true}
nodePersistIntervals = uniformChoice{0, 1, 5}
nodeSnapshotIntervals = uniformChoice{0, 3}