fix up build warnings

This commit is contained in:
Chelsea Holland Komlo 2017-10-06 21:54:55 -04:00 committed by Alex Dadgar
parent 00a1f5fc9a
commit e1c4701a43
2 changed files with 6 additions and 1 deletions

View file

@ -527,7 +527,7 @@ func (c *Client) LatestHostStats() *stats.HostStats {
}
// ValidateMigrateToken verifies that a token is for a specific client and
// allocation, and has been created by a trusted party that has privilaged
// allocation, and has been created by a trusted party that has privileged
// knowledge of the client's secret identifier
func (c *Client) ValidateMigrateToken(allocID, migrateToken string) bool {
if !c.config.ACLEnabled {

View file

@ -320,6 +320,11 @@ func TestHTTP_AllocSnapshot(t *testing.T) {
func createMigrateTokenForClientAndAlloc(allocID, clientSecret string) (string, error) {
h, err := blake2b.New512([]byte(clientSecret))
if err != nil {
return "", err
}
h.Write([]byte(allocID))
validMigrateToken, err := string(h.Sum(nil)), nil
return validMigrateToken, err