increase health check to a minimum of 5 seconds

This commit is contained in:
Benson Wong
2025-02-18 17:35:52 -08:00
parent af653347ae
commit 53338938bd

View File

@@ -215,7 +215,7 @@ func (p *Process) start() error {
}
}
<-time.After(time.Second)
<-time.After(5 * time.Second)
}
}