From 63346cdcdd1391c8243bae618da541c8b316fcdb Mon Sep 17 00:00:00 2001 From: David Norton Date: Tue, 31 Mar 2015 23:49:54 -0400 Subject: [PATCH] minor style change --- commands.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/commands.go b/commands.go index f8caec17f8..ec82175d32 100644 --- a/commands.go +++ b/commands.go @@ -125,10 +125,11 @@ type dropMeasurementCommand struct { } type createMeasurementSubcommand struct { - Name string `json:"name"` - Tags []map[string]string `json:"tags"` + Name string `json:"name"` + Tags []map[string]string `json:"tags"` + Fields []*Field `json:"fields"` + marshaledTags map[string]struct{} // local cache...don't marshal - Fields []*Field `json:"fields"` } type createMeasurementsIfNotExistsCommand struct {