Skip to content

Commit

Permalink
ignore warnings while parsing the config
Browse files Browse the repository at this point in the history
  • Loading branch information
kmala committed Sep 13, 2023
1 parent 619334a commit cec4d9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/providers/v1/aws.go
Original file line number Diff line number Diff line change
Expand Up @@ -1321,7 +1321,7 @@ func readAWSCloudConfig(config io.Reader) (*CloudConfig, error) {
var err error

if config != nil {
err = gcfg.ReadInto(&cfg, config)
err = gcfg.FatalOnly(gcfg.ReadInto(&cfg, config))
if err != nil {
return nil, err
}
Expand Down

0 comments on commit cec4d9b

Please sign in to comment.