From 843613143b0da7d7113002713d4cdfc418025f86 Mon Sep 17 00:00:00 2001 From: James Phillips Date: Tue, 28 Jul 2015 10:48:23 -0700 Subject: [PATCH] Fixes bad name for DC forwarding of Coordinate.Get. --- consul/coordinate_endpoint.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consul/coordinate_endpoint.go b/consul/coordinate_endpoint.go index 0d2c4325c6..757eefb8f5 100644 --- a/consul/coordinate_endpoint.go +++ b/consul/coordinate_endpoint.go @@ -117,7 +117,7 @@ func (c *Coordinate) Update(args *structs.CoordinateUpdateRequest, reply *struct // Get returns the coordinate of the given node in the LAN. func (c *Coordinate) Get(args *structs.NodeSpecificRequest, reply *structs.IndexedCoordinate) error { - if done, err := c.srv.forward("Coordinate.GetLAN", args, args, reply); done { + if done, err := c.srv.forward("Coordinate.Get", args, args, reply); done { return err }