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 7ab6486 commit 6f120a6
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 @@ -1304,7 +1304,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 6f120a6

Please sign in to comment.