diff --git a/common/resh-common.go b/common/resh-common.go index 1499595..7e91094 100644 --- a/common/resh-common.go +++ b/common/resh-common.go @@ -71,12 +71,12 @@ type Record struct { // added by sanitizatizer Sanitized bool `json:"sanitized"` - CmdLength int `json:"cmdLength"` + CmdLength int `json:"cmdLength,omitempty"` // enriching fields - added "later" - FirstWord string `json:"firstWord"` - Invalid bool `json:"invalid"` - SeqSessionID uint64 `json:"seqSessionID"` + FirstWord string `json:"firstWord,omitempty"` + Invalid bool `json:"invalid,omitempty"` + SeqSessionID uint64 `json:"seqSessionID,omitempty"` } // FallbackRecord when record is too old and can't be parsed into regular Record diff --git a/version b/version index 45a1b3f..781dcb0 100644 --- a/version +++ b/version @@ -1 +1 @@ -1.1.2 +1.1.3