You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The aws cli uses a lower case [default] notation for the default section. ini should allow an overwrite of the name of the default section, e.g. through ini.DefaultSection = "default"
To Reproduce
Add section [default] to ini file with some random key/value pairs
Loop over each key
for _, fileSection := range file.Sections() {
sectionName := fileSection.Name() //sectionName will be DEFAULT even though it is named default in the file
for _, key := range fileSection.Keys() {//no keys available even though the [default] section has entries
Overall though the uppercase lowercase spellings in the ini file need to be preserved though, hence the file cannot be completely converted into lowercase.
The text was updated successfully, but these errors were encountered:
The aws cli uses a lower case [default] notation for the default section. ini should allow an overwrite of the name of the default section, e.g. through ini.DefaultSection = "default"
To Reproduce
Add section [default] to ini file with some random key/value pairs
Loop over each key
Overall though the uppercase lowercase spellings in the ini file need to be preserved though, hence the file cannot be completely converted into lowercase.
The text was updated successfully, but these errors were encountered: