diff --git a/discovery/README.md b/discovery/README.md index 7d3a69c4a3..50f86bd6c5 100644 --- a/discovery/README.md +++ b/discovery/README.md @@ -87,7 +87,7 @@ simply implements this interface: type DiscoveryService interface { Initialize(string, int) error Fetch() ([]string, error) - Watch() <-chan time.Time + Watch(*cluster.Cluster, func(*cluster.Cluster, []*Node)) Register(string) error } ```