Fixes bad name for DC forwarding of Coordinate.Get.

This commit is contained in:
James Phillips 2015-07-28 10:48:23 -07:00
parent 9c9195746f
commit 843613143b
1 changed files with 1 additions and 1 deletions

View File

@ -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
}