From d4f2cdb1be51908eebf2039f8b2ed74151c3158a Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Thu, 25 Apr 2024 14:25:11 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E7=BD=91=E5=85=83=E5=85=AC=E5=85=B1?= =?UTF-8?q?=E6=96=87=E4=BB=B6para5G=E8=B7=AF=E5=BE=84=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/network_element/service/ne_info.impl.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/network_element/service/ne_info.impl.go b/src/modules/network_element/service/ne_info.impl.go index c60a8506..c97e8a24 100644 --- a/src/modules/network_element/service/ne_info.impl.go +++ b/src/modules/network_element/service/ne_info.impl.go @@ -491,7 +491,7 @@ func (r *NeInfoImpl) NeConfigFileWirte(neInfo model.NeInfo, filePath, fileType s // 返回 string map[string]any func (r *NeInfoImpl) NeConfPara5GRead(fileType string) any { // 网管本地路径 - omcFilePath := "/usr/local/omc/etc/para5G.yaml" + omcFilePath := "/usr/local/etc/omc/para5G.yaml" if runtime.GOOS == "windows" { omcFilePath = fmt.Sprintf("C:%s", omcFilePath) } @@ -517,7 +517,7 @@ func (r *NeInfoImpl) NeConfPara5GRead(fileType string) any { // NeConfPara5GWirte 网元公共配置文件写入 content内容 syncNE同步到网元端NeType@NeId func (r *NeInfoImpl) NeConfPara5GWirte(fileType string, content any, syncNE []string) error { // 网管本地路径 - omcFilePath := "/usr/local/omc/etc/para5G.yaml" + omcFilePath := "/usr/local/etc/omc/para5G.yaml" if runtime.GOOS == "windows" { omcFilePath = fmt.Sprintf("C:%s", omcFilePath) }