From 900aad4935a508fc63d2a70f6d75429431e618d6 Mon Sep 17 00:00:00 2001 From: chenwanli Date: Tue, 26 Feb 2019 18:12:58 +0800 Subject: [PATCH] Fix https://github.com/chrislusf/seaweedfs/issues/864 --- weed/topology/store_replicate.go | 1 + 1 file changed, 1 insertion(+) diff --git a/weed/topology/store_replicate.go b/weed/topology/store_replicate.go index 3967bb3e3..4273e6d68 100644 --- a/weed/topology/store_replicate.go +++ b/weed/topology/store_replicate.go @@ -47,6 +47,7 @@ func ReplicatedWrite(masterNode string, s *storage.Store, } q := url.Values{ "type": {"replicate"}, + "ttl": {needle.Ttl.String()}, } if needle.LastModified > 0 { q.Set("ts", strconv.FormatUint(needle.LastModified, 10))