We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99533bf commit b964f8fCopy full SHA for b964f8f
cmd/bootstrap/cmd/clustering.go
@@ -145,6 +145,12 @@ func clusterAssignment(cmd *cobra.Command, args []string) {
145
model.FilterByRole(internalNodes, flow.RoleCollection),
146
)
147
log.Info().Msg("")
148
+
149
+ if checkClusterConstraint(clusters, partnerNodes, internalNodes) {
150
+ log.Info().Msg("Enough votes for collection clusters are present - bootstrapping can continue with root block creation")
151
+ } else {
152
+ log.Info().Msg("Not enough internal votes to generate cluster QCs, need partner votes before root block creation")
153
+ }
154
}
155
156
// constructClusterRootVotes generates and writes vote files for internal collector nodes with private keys available.
0 commit comments