logger.Fatal("Matchmaker batch pool size must be >= 1",zap.Int("matchmaker.batch_pool_size",config.GetMatchmaker().BatchPoolSize))
}
ifconfig.GetMatchmaker().RevThreshold<0{
logger.Fatal("Matchmaker reverse matching threshold must be >= 0",zap.Int("matchmaker.rev_threshold",config.GetMatchmaker().RevThreshold))
}
// If the runtime path is not overridden, set it to `datadir/modules`.
ifconfig.GetRuntime().Path==""{
@@ -934,6 +937,7 @@ type MatchmakerConfig struct {
MaxIntervalsint`yaml:"max_intervals" json:"max_intervals" usage:"How many intervals the matchmaker attempts to find matches at the max player count, before allowing min count. Default 2."`
BatchPoolSizeint`yaml:"batch_pool_size" json:"batch_pool_size" usage:"Number of concurrent indexing batches that will be allocated."`