mirror of
https://github.com/docker/docs.git
synced 2026-04-12 06:19:22 +07:00
Check if heartbeat value is greater than zero Signed-off-by: Sriram Natarajan <natarajan.sriram@gmail.com>
12 lines
187 B
Go
12 lines
187 B
Go
package cluster
|
|
|
|
import "crypto/tls"
|
|
|
|
// Options is exported
|
|
type Options struct {
|
|
TLSConfig *tls.Config
|
|
OvercommitRatio float64
|
|
Discovery string
|
|
Heartbeat uint64
|
|
}
|