-
Notifications
You must be signed in to change notification settings - Fork 726
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
core, api: store labels case-insensitive #794
Conversation
server/core/store.go
Outdated
if label.GetKey() == key { | ||
return label.GetValue() | ||
if strings.EqualFold(label.GetKey(), key) { | ||
return strings.ToLower(label.GetValue()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I prefer returning label.GetValue()
here, use strings.EqualFold
outside to compare.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
PTAL @huachaohuang |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
/run-integration-tests |
/run-integration-tests |
case-insensitive when comparing StoreLabel.key, the string store in StoreLabel is still case-sensitive