Merge pull request #2214 from miaoyq/fixes-config-bug
Fixes a default config bug of gc scheduler
This commit is contained in:
commit
804249cdcf
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user