You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
321 B
Go
23 lines
321 B
Go
4 years ago
|
package internal
|
||
|
|
||
|
import "strings"
|
||
|
|
||
|
const keySeparator = ","
|
||
|
|
||
|
func TotalWeights(c []NodeConf) int {
|
||
|
var weights int
|
||
|
|
||
|
for _, node := range c {
|
||
|
if node.Weight < 0 {
|
||
|
node.Weight = 0
|
||
|
}
|
||
|
weights += node.Weight
|
||
|
}
|
||
|
|
||
|
return weights
|
||
|
}
|
||
|
|
||
|
func formatKeys(keys []string) string {
|
||
|
return strings.Join(keys, keySeparator)
|
||
|
}
|