Skip to content

Commit 4632805

Browse files
authored
Merge pull request polarismesh#433 from zhouyang8304/main
[fix] 自己掉自己的问题
2 parents 5eadf1c + 5a58fac commit 4632805

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/config_file_authibility.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func (s *serverAuthibility) GetConfigFileRichInfo(ctx context.Context, namespace
5555
func (s *serverAuthibility) SearchConfigFile(ctx context.Context, namespace, group, name,
5656
tags string, offset, limit uint32) *api.ConfigBatchQueryResponse {
5757

58-
return s.SearchConfigFile(ctx, namespace, group, name, tags, offset, limit)
58+
return s.targetServer.SearchConfigFile(ctx, namespace, group, name, tags, offset, limit)
5959
}
6060

6161
// UpdateConfigFile 更新配置文件
@@ -82,7 +82,7 @@ func (s *serverAuthibility) DeleteConfigFile(ctx context.Context, namespace, gro
8282

8383
ctx = authCtx.GetRequestContext()
8484

85-
return s.DeleteConfigFile(ctx, namespace, group, name, deleteBy)
85+
return s.targetServer.DeleteConfigFile(ctx, namespace, group, name, deleteBy)
8686
}
8787

8888
// BatchDeleteConfigFile 批量删除配置文件

0 commit comments

Comments
 (0)