Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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