fix(proto): fix proto key err

This commit is contained in:
bandl 2021-11-03 15:36:55 +08:00
parent eccfd6a439
commit 0b9230094a
2 changed files with 2 additions and 5 deletions

View File

@ -14,10 +14,7 @@ func TestClient(t *testing.T) {
require.NoError(t, err) require.NoError(t, err)
ctx := context.Background() ctx := context.Background()
bKey := &proto.BaseKey{ bKey := proto.NewBaseKey("apple")
Key: "apple",
Ttl: 10,
}
resp, err := cli.Set(ctx, &proto.SetRequest{ resp, err := cli.Set(ctx, &proto.SetRequest{
Key: bKey, Key: bKey,
Val: "yyyy", Val: "yyyy",

View File

@ -15,7 +15,7 @@ const (
// NewBaseKey // NewBaseKey
// keyttlexpire // keyttlexpire
func NewBaseKey(key string, t ...int64) *BaseKey { func NewBaseKey(key string, t ...int64) *BaseKey {
var expire *timestamppb.Timestamp var expire *timestamppb.Timestamp = nil
var ttl int64 var ttl int64
if len(t) > 1 { if len(t) > 1 {