mirror of
https://github.com/livekit/livekit.git
synced 2026-05-10 19:17:07 +00:00
88c77dc666
* compute agent dispatch affinity from target load * fix test config
9 lines
202 B
Go
9 lines
202 B
Go
package agent
|
|
|
|
const DefaultTargetLoad = 0.7
|
|
|
|
type Config struct {
|
|
EnableUserDataRecording bool `yaml:"enable_user_data_recording"`
|
|
TargetLoad float32 `yaml:"target_load,omitempty"`
|
|
}
|