Skip to content

Commit

Permalink
Handle INVALID in hashKV
Browse files Browse the repository at this point in the history
  • Loading branch information
MrAlias committed May 26, 2023
1 parent 4d92887 commit a127ab4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions attribute/slice_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ func hashKV(h fnv.Hash, kv KeyValue) fnv.Hash {
for i := 0; i < rv.Len(); i++ {
h = h.String(rv.Index(i).String())
}
case INVALID:
default:
// Logging is an alternative, but using the internal logger here
// causes an import cycle so it is not done.
Expand Down

0 comments on commit a127ab4

Please sign in to comment.