Reduce default sync interval to 10s (#167)

Signed-off-by: Jian Qiu <jqiu@redhat.com>

Signed-off-by: Jian Qiu <jqiu@redhat.com>
This commit is contained in:
Jian Qiu
2022-12-01 15:42:26 +08:00
committed by GitHub
parent 1a95b77fee
commit 5b740461ad

View File

@@ -42,7 +42,7 @@ func NewWorkloadAgentOptions() *WorkloadAgentOptions {
return &WorkloadAgentOptions{
QPS: 50,
Burst: 100,
StatusSyncInterval: 30 * time.Second,
StatusSyncInterval: 10 * time.Second,
}
}