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)
ctx := context.Background()
bKey := &proto.BaseKey{
Key: "apple",
Ttl: 10,
}
bKey := proto.NewBaseKey("apple")
resp, err := cli.Set(ctx, &proto.SetRequest{
Key: bKey,
Val: "yyyy",

View File

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