diff --git a/cache/handler/cache.go b/cache/handler/cache.go index b21c60a..a9ba82f 100644 --- a/cache/handler/cache.go +++ b/cache/handler/cache.go @@ -27,6 +27,9 @@ func (c *Cache) Get(ctx context.Context, req *pb.GetRequest, rsp *pb.GetResponse // set the value item.Value = value + // set the item + rsp.Item = item + return nil }