WithReplicas sets the number of replicas in each alpha group
(n int)
| 158 | |
| 159 | // WithReplicas sets the number of replicas in each alpha group |
| 160 | func (cc ClusterConfig) WithReplicas(n int) ClusterConfig { |
| 161 | cc.replicas = n |
| 162 | return cc |
| 163 | } |
| 164 | |
| 165 | // WithVerbosity sets the verbosity level for the logs |
| 166 | func (cc ClusterConfig) WithVerbosity(v int) ClusterConfig { |
no outgoing calls