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
I was setting things up and got an error on racker factory check about it not being able to determine PXE interface by looking at the columns of mac addresses.
Looking at the code I was able to figure out what I was doing wrong, however I used capitals because that is how the are shown to me by various tools (not all though).
Impact
Not very high, likely it is a convention to use lower-casing that I am not aware about.
Ideal future situation
use Go's strings.EqualFoldhere to remove the likelihood of it happening for other people.
Current situation
I was setting things up and got an error on
racker factory checkabout it not being able to determine PXE interface by looking at the columns of mac addresses.Looking at the code I was able to figure out what I was doing wrong, however I used capitals because that is how the are shown to me by various tools (not all though).
Impact
Not very high, likely it is a convention to use lower-casing that I am not aware about.
Ideal future situation
use Go's
strings.EqualFoldhere to remove the likelihood of it happening for other people.**Implementation options
See above.
Additional information
Everything is working out great so far.