Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
Adds instance variable to error message
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshVanL authored Jun 19, 2018
1 parent 6437542 commit f9af401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/tarmak/provider/amazon/amazon.go
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ func (a *Amazon) ValidateInstanceTypes(instancePools []interfaces.InstancePool)
}

if found {
err := fmt.Errorf("type '%s' is not supported for master instance")
err := fmt.Errorf("type '%s' is not supported for master instance", instanceType)
result = multierror.Append(result, err)
}
}
Expand Down

0 comments on commit f9af401

Please sign in to comment.