fix(be/config): open fd limit in yaml is not read

This commit is contained in:
hexxa 2022-01-09 21:16:32 +08:00 committed by Hexxa
parent 46ccddc5f8
commit 3b997eb9f6

View file

@ -8,9 +8,9 @@ import (
)
type FSConfig struct {
Root string `json:"root"`
OpensLimit int `json:"opensLimit"`
OpenTTL int `json:"openTTL"`
Root string `json:"root" yaml:"root"`
OpensLimit int `json:"opensLimit" yaml:"opensLimit"`
OpenTTL int `json:"openTTL" yaml:"openTTL"`
}
type UsersCfg struct {