Removing override fields for zk config.

This commit is contained in:
Renan DelValle 2018-06-22 12:40:09 -07:00
parent 1535c74b02
commit 3723e7dd2c
No known key found for this signature in database
GPG key ID: C240AD6D6F443EC9

12
zk.go
View file

@ -36,13 +36,11 @@ type ServiceInstance struct {
} }
type zkConfig struct { type zkConfig struct {
endpoints []string endpoints []string
path string path string
backoff Backoff backoff Backoff
timeout time.Duration timeout time.Duration
logger Logger logger Logger
auroraSchemeOverride *string
auroraPortOverride *int
} }
type ZKOpt func(z *zkConfig) type ZKOpt func(z *zkConfig)