Skip to content

Commit

Permalink
Merge pull request #1103 from SeanTAllen/patch-1
Browse files Browse the repository at this point in the history
Fix incorrect casing in error message
  • Loading branch information
dcantah authored Aug 11, 2021
2 parents d300e45 + ab1fcc8 commit 5036ecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/guest/runtime/hcsv2/uvm.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func (h *Host) SetSecurityPolicy(base64_policy string) error {
// we want to store a complex json object so.... base64 it is
jsonPolicy, err := base64.StdEncoding.DecodeString(base64_policy)
if err != nil {
return errors.Wrap(err, "Unable to decode policy from Base64 format")
return errors.Wrap(err, "unable to decode policy from Base64 format")
}

// json unmarshall the decoded to a SecurityPolicy
Expand Down

0 comments on commit 5036ecc

Please sign in to comment.