mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
config: Add the default case when failing to parse the log rotate config json
Make sure that the `setupLogRotation` function must return the error when failing parse json. Signed-off-by: SimFG <1142838399@qq.com>
This commit is contained in:
parent
1da0b011c0
commit
1dcd75f8a2
@ -272,6 +272,8 @@ func setupLogRotation(logOutputs []string, logRotateConfigJSON string) error {
|
||||
return fmt.Errorf("improperly formatted log rotation config: %v", err)
|
||||
case errors.As(err, &unmarshalTypeError):
|
||||
return fmt.Errorf("invalid log rotation config: %v", err)
|
||||
default:
|
||||
return fmt.Errorf("fail to unmarshal log rotation config: %v", err)
|
||||
}
|
||||
}
|
||||
zap.RegisterSink("rotate", func(u *url.URL) (zap.Sink, error) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user