From cc4630e268e103d5ea2118492f3cced869c0523f Mon Sep 17 00:00:00 2001 From: Cory LaNou Date: Tue, 30 Dec 2014 11:21:15 -0600 Subject: [PATCH] vet shoudl pass for server.go --- server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.go b/server.go index 856c826ed6..1c8a28aeb3 100644 --- a/server.go +++ b/server.go @@ -1043,7 +1043,7 @@ func (s *Server) WriteSeries(database, retentionPolicy, name string, tags map[st // Now write it into the shard. sh, err := s.createShardIfNotExists(database, retentionPolicy, id, timestamp) if err != nil { - return fmt.Errorf("create shard(%s/%d): %s", retentionPolicy, timestamp.Format(time.RFC3339Nano), err) + return fmt.Errorf("create shard(%s/%s): %s", retentionPolicy, timestamp.Format(time.RFC3339Nano), err) } // Encode point to a byte slice.