diff --git a/client/client.go b/client/client.go index 16b3ac401..c8e3b8767 100644 --- a/client/client.go +++ b/client/client.go @@ -666,7 +666,7 @@ func (c *Client) nodeID() (id, secret string, err error) { // Use existing ID if any if len(idBuf) != 0 { - id = string(idBuf) + id = strings.ToLower(string(idBuf)) } else { id = hostID