From 7f307fa0dfb0276f8e65a988a38b771e0827b53b Mon Sep 17 00:00:00 2001 From: "Fabrizio (Misto) Milo" Date: Tue, 6 Aug 2013 19:14:56 -0700 Subject: [PATCH] nip --- store/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/store.go b/store/store.go index 99631db79..db159ab62 100644 --- a/store/store.go +++ b/store/store.go @@ -190,7 +190,7 @@ func (s *Store) Set(key string, value string, expireTime time.Time, index uint64 } else { // If we want the permanent node to have expire time - // We need to create create a go routine with a channel + // We need to create a go routine with a channel if isExpire { node.update = make(chan time.Time) go s.monitorExpiration(key, node.update, expireTime)