plugin/helpers: fix an unchecked issue when comparing two conf… (#13748)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
40b7790318
Коммит
99a82ef07e
@@ -18,7 +18,7 @@ func (p *HelpersImpl) CheckRequiredServerConfiguration(req *model.Config) (bool,
|
||||
|
||||
cfg := p.API.GetConfig()
|
||||
|
||||
mc, err := utils.Merge(req, cfg, nil)
|
||||
mc, err := utils.Merge(cfg, req, nil)
|
||||
if err != nil {
|
||||
return false, errors.Wrap(err, "could not merge configurations")
|
||||
}
|
||||
|
||||
Ссылка в новой задаче
Block a user