blob: 279ca521e7c501ede5dd02fa41be7c41df5ee7bc [file] [log] [blame]
package ipc
import "time"
const (
// The publisher re-mounts on this period.
publishPeriod = time.Minute
// The server uses this timeout for incoming calls before the real timeout is known.
// The client uses this as the default max time for connecting to the server including
// name resolution.
defaultCallTimeout = time.Minute
// The client uses this as the maximum time between retry attempts when starting a call.
maxBackoff = time.Minute
)