Skip to content

Commit

Permalink
Merge branch 'release-5.6.0' into SDKS-7838-cached-flag-sets
Browse files Browse the repository at this point in the history
  • Loading branch information
sanzmauro authored Jan 11, 2024
2 parents ff7abe7 + 5e0177b commit 7135c5d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright © 2023 Split Software, Inc.
Copyright © 2024 Split Software, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
3 changes: 3 additions & 0 deletions splitio/proxy/caching/workers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,9 @@ func (*splitStorageMock) FetchMany(splitNames []string) map[string]*dtos.SplitDT
func (*splitStorageMock) GetNamesByFlagSets(sets []string) map[string][]string {
panic("unimplemented")
}
func (*splitStorageMock) GetAllFlagSetNames() []string {
panic("unimplemented")
}
func (*splitStorageMock) KillLocally(splitName string, defaultTreatment string, changeNumber int64) {
panic("unimplemented")
}
Expand Down
1 change: 1 addition & 0 deletions splitio/proxy/storage/splits.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ func (*ProxySplitStorageImpl) GetNamesByFlagSets(sets []string) map[string][]str
// GetAllFlagSetNames implements storage.SplitStorage
func (*ProxySplitStorageImpl) GetAllFlagSetNames() []string {
// NOTE: This method is NOT used by the proxy.
// we need to revisit our interfaces so that we're not obliged to do this smeely empty impls.
return nil
}

Expand Down

0 comments on commit 7135c5d

Please sign in to comment.