diff --git a/momento/dictionary_increment.go b/momento/dictionary_increment.go index 7ef0b4e6..7473d7bb 100644 --- a/momento/dictionary_increment.go +++ b/momento/dictionary_increment.go @@ -32,7 +32,7 @@ func (r *DictionaryIncrementRequest) ttl() time.Duration { return r.Ttl.Ttl } func (r *DictionaryIncrementRequest) collectionTtl() *utils.CollectionTtl { return r.Ttl } -func (r *DictionaryIncrementRequest) requestName() string { return "DictionaryFetch" } +func (r *DictionaryIncrementRequest) requestName() string { return "DictionaryIncrement" } func (r *DictionaryIncrementRequest) initGrpcRequest(client scsDataClient) error { var err error diff --git a/momento/keys_exist.go b/momento/keys_exist.go index 361a970e..f7eaa965 100644 --- a/momento/keys_exist.go +++ b/momento/keys_exist.go @@ -21,7 +21,7 @@ func (r *KeysExistRequest) cacheName() string { return r.CacheName } func (r *KeysExistRequest) keys() []Key { return r.Keys } -func (r *KeysExistRequest) requestName() string { return "Get" } +func (r *KeysExistRequest) requestName() string { return "KeysExist" } func (r *KeysExistRequest) initGrpcRequest(scsDataClient) error { var err error diff --git a/momento/list_remove_value.go b/momento/list_remove_value.go index f2e0b877..c57d624b 100644 --- a/momento/list_remove_value.go +++ b/momento/list_remove_value.go @@ -8,10 +8,6 @@ import ( pb "github.com/momentohq/client-sdk-go/internal/protos" ) -// ListRemoveValueResponse - -// ListRemoveValueRequest - type ListRemoveValueRequest struct { CacheName string ListName string diff --git a/momento/sorted_set_increment_score.go b/momento/sorted_set_increment_score.go index e125c57f..d2062d80 100644 --- a/momento/sorted_set_increment_score.go +++ b/momento/sorted_set_increment_score.go @@ -27,7 +27,7 @@ type SortedSetIncrementScoreRequest struct { func (r *SortedSetIncrementScoreRequest) cacheName() string { return r.CacheName } -func (r *SortedSetIncrementScoreRequest) requestName() string { return "Sorted set increment" } +func (r *SortedSetIncrementScoreRequest) requestName() string { return "Sorted set increment score" } func (r *SortedSetIncrementScoreRequest) value() Value { return r.Value } diff --git a/momento/sorted_set_put_elements.go b/momento/sorted_set_put_elements.go index 9cb7fb9d..20397b3c 100644 --- a/momento/sorted_set_put_elements.go +++ b/momento/sorted_set_put_elements.go @@ -28,7 +28,7 @@ type SortedSetPutElementsRequest struct { func (r *SortedSetPutElementsRequest) cacheName() string { return r.CacheName } -func (r *SortedSetPutElementsRequest) requestName() string { return "Sorted set put" } +func (r *SortedSetPutElementsRequest) requestName() string { return "Sorted set put elements" } func (r *SortedSetPutElementsRequest) ttl() time.Duration { return r.Ttl.Ttl } diff --git a/momento/sorted_set_remove_elements.go b/momento/sorted_set_remove_elements.go index bd2363ed..cf4887de 100644 --- a/momento/sorted_set_remove_elements.go +++ b/momento/sorted_set_remove_elements.go @@ -20,7 +20,7 @@ type SortedSetRemoveElementsRequest struct { func (r *SortedSetRemoveElementsRequest) cacheName() string { return r.CacheName } -func (r *SortedSetRemoveElementsRequest) requestName() string { return "Sorted set remove" } +func (r *SortedSetRemoveElementsRequest) requestName() string { return "Sorted set remove elements" } func (r *SortedSetRemoveElementsRequest) values() []Value { return r.Values }