crdt: inform about trust all mode

This commit is contained in:
Hector Sanjuan 2019-08-24 15:45:25 +02:00
parent 9c73c2bdbd
commit df7621ba6e

View File

@ -257,6 +257,11 @@ func (css *Consensus) setup() {
return
}
css.state = clusterState
if css.config.TrustAll {
logger.Info("'trust all' mode enabled. Any peer in the cluster can modify the pinset.")
}
css.readyCh <- struct{}{}
}