diff --git a/internal/db/models/http_web_dao.go b/internal/db/models/http_web_dao.go index 35f55b25..fe70141f 100644 --- a/internal/db/models/http_web_dao.go +++ b/internal/db/models/http_web_dao.go @@ -519,6 +519,14 @@ func (this *HTTPWebDAO) ComposeWebConfig(tx *dbs.Tx, webId int64, isLocationOrGr } if this.shouldCompose(isLocationOrGroup, forNode, ccConfig.IsPrior, ccConfig.IsOn) { config.CC = ccConfig + + if forNode { + for index, threshold := range ccConfig.Thresholds { + if index < len(serverconfigs.DefaultHTTPCCThresholds) { + threshold.MergeIfEmpty(serverconfigs.DefaultHTTPCCThresholds[index]) + } + } + } } }