From 9a2a78765c98a386de5ad52c0c3c9941d85e6448 Mon Sep 17 00:00:00 2001 From: David Gao Date: Fri, 18 Jul 2025 09:28:33 +0800 Subject: [PATCH] fix bug --- publisher.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/publisher.go b/publisher.go index 8c51a56b2..da53789fb 100644 --- a/publisher.go +++ b/publisher.go @@ -86,7 +86,8 @@ func (p *publisher) publishUpdates(reqs requests) { kv := &pb.KV{ Key: y.ParseKey(k), Value: y.SafeCopy(nil, e.Value), - Meta: []byte{e.UserMeta}, + Meta: []byte{e.meta}, + UserMeta: []byte{e.UserMeta}, ExpiresAt: e.ExpiresAt, Version: y.ParseTs(k), }