增加脚本相关表

This commit is contained in:
GoEdgeLab
2022-03-25 14:11:17 +08:00
parent 85e6861766
commit 5388c99dd0
10 changed files with 91 additions and 1 deletions

View File

@@ -955,6 +955,12 @@ func (this *NodeDAO) ComposeNodeConfig(tx *dbs.Tx, nodeId int64, cacheMap *utils
}
config.OCSPVersion = ocspVersion
// 初始化扩展配置
err = this.composeExtConfig(tx, config, cacheMap)
if err != nil {
return nil, err
}
return config, nil
}