diff --git a/splitio/commitversion.go b/splitio/commitversion.go index 069ab18d..e90e7a94 100644 --- a/splitio/commitversion.go +++ b/splitio/commitversion.go @@ -5,4 +5,4 @@ This file is created automatically, please do not edit */ // CommitVersion is the version of the last commit previous to release -const CommitVersion = "4253b9f" +const CommitVersion = "5d527e7" diff --git a/splitio/proxy/storage/optimized/changesummary.go b/splitio/proxy/storage/optimized/changesummary.go index 38dbf673..acdb31b3 100644 --- a/splitio/proxy/storage/optimized/changesummary.go +++ b/splitio/proxy/storage/optimized/changesummary.go @@ -219,7 +219,7 @@ func (s *splitSet) update(toAdd []SplitMinimalView, toRemove []SplitMinimalView) } for idx := range toRemove { - delete(s.data, toAdd[idx].Name) + delete(s.data, toRemove[idx].Name) } }