From 253e28abde1fb6074b46102cd812c7d51a2385b0 Mon Sep 17 00:00:00 2001 From: Ben Ridley Date: Wed, 16 Dec 2020 21:32:21 +1100 Subject: [PATCH] Remove unnecessary json tag in MuteTimeInterval Signed-off-by: Ben Ridley --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 76b641dc..c561110f 100644 --- a/config/config.go +++ b/config/config.go @@ -222,7 +222,7 @@ func resolveFilepaths(baseDir string, cfg *Config) { // MuteTimeInterval represents a named set of time intervals for which a route should be muted. type MuteTimeInterval struct { - Name string `yaml:"name" json:"name"` + Name string `yaml:"name"` TimeIntervals []timeinterval.TimeInterval `yaml:"time_intervals"` }