diff --git a/gc/scheduler/scheduler.go b/gc/scheduler/scheduler.go index 199c90c0d..48c8e514b 100644 --- a/gc/scheduler/scheduler.go +++ b/gc/scheduler/scheduler.go @@ -91,6 +91,10 @@ func (d *duration) UnmarshalText(text []byte) error { return nil } +func (d duration) MarshalText() (text []byte, err error) { + return []byte(time.Duration(d).String()), nil +} + func init() { plugin.Register(&plugin.Registration{ Type: plugin.GCPlugin,