This repository has been archived on 2022-07-30. You can view files and clone it, but cannot push or open issues/pull-requests.
mdb/kvstore/globals.go

10 lines
159 B
Go

package kvstore
import "time"
var (
connTimeout = 16 * time.Second
heartbeatInterval = 4 * time.Second
pollInterval = 500 * time.Millisecond
)