Skip to content

[ISSUE#13449] Fix service pagination #13459

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 16, 2025

Conversation

OmCheeLin
Copy link
Contributor

@OmCheeLin OmCheeLin commented Jun 3, 2025

Please do not create a Pull Request without creating an issue first.

What is the purpose of the change

fix #13449
fix service pagination in CatalogServiceV2Impl.java and add test.

Brief changelog

fix service pagination in CatalogServiceV2Impl.java and add revelant test.

Verifying this change

Follow this checklist to help us incorporate your contribution quickly and easily:

  • Make sure there is a Github issue filed for the change (usually before you start working on it). Trivial changes like typos do not require a Github issue. Your pull request should address just this issue, without pulling in other changes - one PR resolves one issue.
  • Format the pull request title like [ISSUE #123] Fix UnknownException when host config not exist. Each commit in the pull request should have a meaningful subject line and body.
  • Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
  • Write necessary unit-test to verify your logic correction, more mock a little better when cross module dependency exist. If the new feature or significant change is committed, please remember to add integration-test in test module.
  • Run mvn -B clean package apache-rat:check findbugs:findbugs -Dmaven.test.skip=true to make sure basic checks pass. Run mvn clean install -DskipITs to make sure unit-test pass. Run mvn clean test-compile failsafe:integration-test to make sure integration-test pass.

@CLAassistant
Copy link

CLAassistant commented Jun 3, 2025

CLA assistant check
All committers have signed the CLA.

Copy link

lingma-agents bot commented Jun 3, 2025

修复服务分页逻辑并添加测试用例

变更文件

文件路径 变更说明
naming/​src/​main/​java/​com/​alibaba/​nacos/​naming/​core/​CatalogServiceV2Impl.java 修复分页参数(pageNo/pageSize)计算逻辑,新增保护阈值验证,调整集群信息聚合方式,优化空服务分页处理。
naming/​src/​test/​java/​com/​alibaba/​nacos/​naming/​core/​CatalogServiceV2ImplTest.java 新增分页边界条件测试,覆盖空服务、分页参数异常及集群信息验证场景。

时序图

sequenceDiagram
    participant CS as CatalogServiceV2Impl
    participant SSM as ServiceStorage
    participant NMM as NamingMetadataManager
    CS->>SSM: 获取服务实例列表
    SSM-->>CS: 返回服务实例集合
    CS->>NMM: 查询服务元数据
    NMM-->>CS: 返回元数据对象
    CS->>CS: 计算分页参数
    CS->>CS: 验证保护阈值条件
    CS-->>客户端: 返回分页结果
Loading

💡 小贴士

与 lingma-agents 交流的方式

📜 直接回复评论
直接回复本条评论,lingma-agents 将自动处理您的请求。例如:

  • 在当前代码中添加详细的注释说明。

  • 请详细介绍一下你说的 LRU 改造方案,并使用伪代码加以说明。

📜 在代码行处标记
在文件的特定位置创建评论并 @lingma-agents。例如:

  • @Lingma-Agent 分析这个方法的性能瓶颈并提供优化建议。

  • @Lingma-Agent 对这个方法生成优化代码。

📜 在讨论中提问
在任何讨论中 @lingma-agents 来获取帮助。例如:

  • @Lingma-Agent 请总结上述讨论并提出解决方案。

  • @Lingma-Agent 请根据讨论内容生成优化代码。

Copy link

@lingma-agents lingma-agents bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔍 代码评审报告

🎯 评审意见概览

严重度 数量 说明
🔴 Blocker 0 阻断性问题,需立即修复。例如:系统崩溃、关键功能不可用或严重安全漏洞。
🟠 Critical 0 严重问题,高优先级修复。例如:核心功能异常或性能瓶颈影响用户体验。
🟡 Major 0 主要问题,建议修复。例如:非核心功能缺陷或代码维护性较差。
🟢 Minor 1 次要问题,酌情优化。例如:代码格式不规范或注释缺失。

总计: 1 个问题


📋 评审意见详情

💡 单文件建议

以下是文件级别的代码建议,聚焦于代码的可读性、可维护性和潜在问题。
☕ naming/src/test/java/com/alibaba/nacos/naming/core/CatalogServiceV2ImplTest.java (1 💬)

🚀 跨文件建议

以下是对代码架构和设计的综合分析,聚焦于跨文件交互、系统一致性和潜在优化空间。
🔍 1. 分页逻辑接口不一致引入潜在兼容性风险

新增的pageListService与listService方法在分页实现上存在逻辑重复且返回类型不一致。pageListService返回ObjectNode而listService返回Page,这种不一致可能导致客户端调用混乱。需要统一分页接口的设计规范,避免同一业务场景出现多个并行实现。

📌 关键代码:

public Object pageListService(String namespaceId, String groupName, String serviceName, int pageNo, int pageSize, String instancePattern, boolean ignoreEmptyService)
public Page<ServiceView> listService(String namespaceId, String groupName, String serviceName, int pageNo, int pageSize, boolean ignoreEmptyService)

⚠️ 潜在风险: 导致客户端需要适配两种不同分页接口,增加维护成本;可能出现重复逻辑导致版本不一致问题

🔍 2. 集群信息收集存在性能隐患

getClusterMap方法通过遍历所有实例来收集集群信息,当服务实例数量庞大时会导致O(n)时间复杂度。建议引入缓存机制或预计算集群元数据,避免在每次请求时进行全量计算。

📌 关键代码:

for (Instance each : serviceStorage.getData(service).getHosts()) { ... }

⚠️ 潜在风险: 在高负载场景下可能引发性能瓶颈,影响服务响应时间

🔍 3. 分页测试覆盖不完整

新增的listService测试用例仅验证了基础分页逻辑,未覆盖分页参数边界值(如页码为0、pageSize超过总记录数)和过滤条件组合场景。建议补充极端值测试和模式匹配测试用例。

📌 关键代码:

@Test void testListService() { ... }

⚠️ 潜在风险: 可能遗漏分页逻辑在特殊条件下的缺陷,导致线上出现越界或空指针异常

🔍 4. 服务元数据访问存在设计缺陷

getServiceDetail方法直接通过ServiceMetadata::new创建默认值,但未校验基础服务是否存在。当服务实例不存在时应提前终止流程,避免产生无效元数据对象。

📌 关键代码:

ServiceMetadata::new

⚠️ 潜在风险: 返回包含默认值的错误服务详情,误导系统决策

🔍 5. 保护阈值计算存在精度风险

isProtectThreshold方法使用float类型进行保护阈值计算,存在浮点精度误差风险。建议改用BigDecimal或整数百分比表示,避免因精度问题导致策略判断失误。

📌 关键代码:

metadata.getProtectThreshold()

⚠️ 潜在风险: 可能因计算误差触发不必要的保护机制或遗漏异常情况


💡 小贴士

与 lingma-agents 交流的方式

📜 直接回复评论
直接回复本条评论,lingma-agents 将自动处理您的请求。例如:

  • 在当前代码中添加详细的注释说明。

  • 请详细介绍一下你说的 LRU 改造方案,并使用伪代码加以说明。

📜 在代码行处标记
在文件的特定位置创建评论并 @lingma-agents。例如:

  • @Lingma-Agent 分析这个方法的性能瓶颈并提供优化建议。

  • @Lingma-Agent 对这个方法生成优化代码。

📜 在讨论中提问
在任何讨论中 @lingma-agents 来获取帮助。例如:

  • @Lingma-Agent 请总结上述讨论并提出解决方案。

  • @Lingma-Agent 请根据讨论内容生成优化代码。

Comment on lines 184 to 201
void testListService() throws NacosException {
ServiceInfo serviceInfo = new ServiceInfo();
Mockito.when(serviceStorage.getData(Mockito.any())).thenReturn(serviceInfo);
ServiceManager.getInstance().getSingleton(Service.newService("CatalogService", "CatalogService", "1"));
ServiceManager.getInstance().getSingleton(Service.newService("CatalogService", "CatalogService", "2"));
ServiceManager.getInstance().getSingleton(Service.newService("CatalogService", "CatalogService", "3"));
Page<ServiceView> result = catalogServiceV2Impl.listService("CatalogService", "", "", 2, 1, false);

assertNotNull(result);
assertEquals(3, result.getTotalCount(), "Total service count should be 3");
assertEquals(2, result.getPageNumber(), "Current page number should be 2");
assertEquals(4, result.getPagesAvailable(), "PagesAvailable should = (totalCount / pageSize) + 1");
assertEquals(1, result.getPageItems().size(), "Page size is 1, so only one item should be returned");

ServiceView serviceView = result.getPageItems().get(0);
assertEquals(serviceView.getName(), "2", "Service name should be '2' ");
assertEquals("CatalogService", serviceView.getGroupName(), "Group name should be CatalogService");
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

补充testListService测试用例的断言验证

🟢 Minor | 🧹 Code Smells

📋 问题详情

新增的testListService测试用例仅验证了基础结构,未验证分页数据的具体内容,可能导致测试覆盖率不足。

💡 解决方案

增加对集群信息的断言验证:

+        assertEquals(1, serviceView.getClusterMap().size(), "Cluster count should match service instances");

您的反馈对我们很重要!(建议右键在新标签页中打开以下链接)

有用意见👍无用意见👎错误意见❌

@codecov-commenter
Copy link

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 70.57%. Comparing base (c5aebb0) to head (97e5aa5).

Additional details and impacted files

Impacted file tree graph

@@              Coverage Diff              @@
##             develop   #13459      +/-   ##
=============================================
+ Coverage      70.52%   70.57%   +0.04%     
- Complexity     11912    11914       +2     
=============================================
  Files           1621     1621              
  Lines          51826    51826              
  Branches        5210     5210              
=============================================
+ Hits           36552    36575      +23     
+ Misses         12826    12801      -25     
- Partials        2448     2450       +2     
Files with missing lines Coverage Δ
...libaba/nacos/naming/core/CatalogServiceV2Impl.java 84.96% <100.00%> (+11.11%) ⬆️

... and 3 files with indirect coverage changes


Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update c5aebb0...97e5aa5. Read the comment docs.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@KomachiSion
Copy link
Collaborator

@OmCheeLin Please sign cla first

@OmCheeLin
Copy link
Contributor Author

@OmCheeLin Please sign cla first

ok, I have done it.

@@ -55,18 +55,18 @@
*/
@Component()
public class CatalogServiceV2Impl implements CatalogService {

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please dont change the indent

@KomachiSion
Copy link
Collaborator

The only problem is the indent changed, please setting the indent and reformat these two files.

@wuyfee
Copy link

wuyfee commented Jun 4, 2025

$\color{red}{FAILURE}$
DETAILS
✅ - docker: success
❌ - deploy (standalone & cluster & standalone_auth): failure
❌ - e2e-java-test (standalone & cluster & standalone_auth): skipped
❌ - e2e-go-test (standalone & cluster): skipped
❌ - e2e-cpp-test (standalone & cluster): skipped
❌ - e2e-csharp-test (standalone & cluster): skipped
❌ - e2e-nodejs-test (standalone & cluster): skipped
❌ - e2e-python-test (standalone & cluster): skipped
✅ - clean (standalone & cluster & standalone_auth): success

@KomachiSion
Copy link
Collaborator

The only problem is the indent changed, please setting the indent and reformat these two files.

@OmCheeLin Hello, please fix the indent. If still no response, PR will be closed.

@KomachiSion KomachiSion reopened this Jun 10, 2025
Copy link

lingma-agents bot commented Jun 10, 2025

修复服务分页逻辑并增强健康实例统计功能

变更文件

文件路径 变更说明
naming/​src/​main/​java/​com/​alibaba/​nacos/​naming/​core/​CatalogServiceV2Impl.java 修正`listService`方法分页数据来源错误(将循环变量从services改为page.getPageItems()),新增`countHealthyInstance`方法统计健康实例数量,优化`pageListService`等方法的分页参数处理逻辑,添加`doPage`方法实现分页数据切片,增强`getClusterMap`方法集群信息收集的健壮性。
naming/​src/​test/​java/​com/​alibaba/​nacos/​naming/​core/​CatalogServiceV2ImplTest.java 新增`testListService`测试用例验证分页参数处理,补充分页边界条件测试(如空服务、分页越界等场景),完善`pageListServiceDetail`接口的返回值校验,增强`ServiceView`对象属性验证逻辑。

💡 小贴士

与 lingma-agents 交流的方式

📜 直接回复评论
直接回复本条评论,lingma-agents 将自动处理您的请求。例如:

  • 在当前代码中添加详细的注释说明。

  • 请详细介绍一下你说的 LRU 改造方案,并使用伪代码加以说明。

📜 在代码行处标记
在文件的特定位置创建评论并 @lingma-agents。例如:

  • @Lingma-Agent 分析这个方法的性能瓶颈并提供优化建议。

  • @Lingma-Agent 对这个方法生成优化代码。

📜 在讨论中提问
在任何讨论中 @lingma-agents 来获取帮助。例如:

  • @Lingma-Agent 请总结上述讨论并提出解决方案。

  • @Lingma-Agent 请根据讨论内容生成优化代码。

@OmCheeLin
Copy link
Contributor Author

The only problem is the indent changed, please setting the indent and reformat these two files.

@OmCheeLin Hello, please fix the indent. If still no response, PR will be closed.

ok,I will repair today

Copy link

Thanks for your this PR. 🙏
Please check again for your PR changes whether contains any usage/api/configuration change such as Add new API , Add new configuration, Change default value of configuration.
If so, please add or update documents(markdown type) in docs/next/ for repository nacos-group/nacos-group.github.io


感谢您提交的PR。 🙏
请再次查看您的PR内容,确认是否包含任何使用方式/API/配置参数的变更,如:新增API新增配置参数修改默认配置等操作。
如果是,请确保在提交之前,在仓库nacos-group/nacos-group.github.io中的docs/next/目录下添加或更新文档(markdown格式)。

Copy link

@lingma-agents lingma-agents bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔍 代码评审报告

🎯 评审意见概览

严重度 数量 说明
🔴 Blocker 1 阻断性问题,需立即修复。例如:系统崩溃、关键功能不可用或严重安全漏洞。
🟠 Critical 1 严重问题,高优先级修复。例如:核心功能异常或性能瓶颈影响用户体验。
🟡 Major 1 主要问题,建议修复。例如:非核心功能缺陷或代码维护性较差。
🟢 Minor 1 次要问题,酌情优化。例如:代码格式不规范或注释缺失。

总计: 4 个问题

⚠️ **需要立即关注的阻断性问题**

naming/src/main/java/com/alibaba/nacos/naming/core/CatalogServiceV2Impl.java


📋 评审意见详情

💡 单文件建议

以下是文件级别的代码建议,聚焦于代码的可读性、可维护性和潜在问题。
☕ naming/src/main/java/com/alibaba/nacos/naming/core/CatalogServiceV2Impl.java (3 💬)
☕ naming/src/test/java/com/alibaba/nacos/naming/core/CatalogServiceV2ImplTest.java (1 💬)

🚀 跨文件建议

以下是对代码架构和设计的综合分析,聚焦于跨文件交互、系统一致性和潜在优化空间。
🔍 1. 分页接口返回类型不一致导致调用混乱

在CatalogServiceV2Impl中同时存在返回ObjectNode的pageListService和返回Page对象的listService方法,两种分页接口返回类型不一致。这会导致调用方需要针对不同接口处理不同的数据结构,增加客户端适配成本。建议统一使用Page对象作为分页结果的标准返回类型,避免接口碎片化。

📌 关键代码:

public Object pageListService(...){}
public Page<ServiceView> listService(...){}

⚠️ 潜在风险: 接口不一致性将导致:

  1. 客户端需要维护两种不同的数据解析逻辑
  2. 新开发人员容易混淆接口使用场景
  3. 后续维护时可能引入类型转换错误
🔍 2. 分页核心逻辑未统一抽象

分页处理逻辑分散在doPage、listService、pageListService等多个方法中,核心分页逻辑(如页码计算、分页切片)未进行统一抽象。例如doPage方法直接操作集合分页,而pageListService又包含额外的过滤逻辑,这种分散实现增加了维护复杂度。

📌 关键代码:

private Collection<Service> doPage(Collection<Service> services, int pageNo, int pageSize) {
  if (pageNo == 0 && services.size() < pageSize) {
    return services;
}

⚠️ 潜在风险: 逻辑分散可能导致:

  1. 分页参数处理不一致(如页码起始值、边界值处理)
  2. 新增分页接口时需要重复实现基础逻辑
  3. 调试时难以追踪分页逻辑的完整执行路径
🔍 3. 分页参数有效性校验不全面

虽然在CatalogServiceV2Impl.java第135行添加了分页参数校验,但测试用例未覆盖页码和页大小的负值场景。此外,当pageSize为0时存在潜在除零风险(如计算PagesAvailable时),需补充相关校验逻辑。

📌 关键代码:

ObjectNode obj = ... pageListService("CatalogService", "", "", 2, 1, ...)

⚠️ 潜在风险: 参数校验不足可能导致:

  1. 系统出现ArithmeticException异常
  2. 返回无效的分页信息(如页数计算错误)
  3. 恶意请求引发服务异常
🔍 4. 分页性能隐患

doPage方法采用内存分页方式处理服务列表,当服务数量达到百万级时会导致内存压力和性能下降。例如在测试用例中创建3个服务时即需要加载全部数据到内存,未使用数据库原生分页能力。

📌 关键代码:

private Collection<Service> doPage(Collection<Service> services, ...) {
  if (pageNo == 0 && services.size() < pageSize) {
    return services;
}

⚠️ 潜在风险: 内存分页可能导致:

  1. 高负载时内存溢出
  2. 查询响应时间随数据量增长线性增加
  3. 数据库连接池因全量查询被阻塞
🔍 5. 测试覆盖不充分

新增的listService测试用例(第184行)仅验证了正常分页场景,未覆盖以下关键场景:

  • 页码超过最大页数时的返回
  • 服务名模式匹配与分页的联合过滤
  • ignoreEmptyService参数对分页结果的影响

📌 关键代码:

@Test void testListService() { ... }

⚠️ 潜在风险: 测试不充分可能导致:

  1. 边界场景下出现未处理的异常
  2. 参数组合逻辑存在未发现的缺陷
  3. 系统升级时引入回归问题

💡 小贴士

与 lingma-agents 交流的方式

📜 直接回复评论
直接回复本条评论,lingma-agents 将自动处理您的请求。例如:

  • 在当前代码中添加详细的注释说明。

  • 请详细介绍一下你说的 LRU 改造方案,并使用伪代码加以说明。

📜 在代码行处标记
在文件的特定位置创建评论并 @lingma-agents。例如:

  • @Lingma-Agent 分析这个方法的性能瓶颈并提供优化建议。

  • @Lingma-Agent 对这个方法生成优化代码。

📜 在讨论中提问
在任何讨论中 @lingma-agents 来获取帮助。例如:

  • @Lingma-Agent 请总结上述讨论并提出解决方案。

  • @Lingma-Agent 请根据讨论内容生成优化代码。

return serviceInfo.getHosts();
}

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

添加分页参数的有效性校验

🟠 Critical | 🐞 Bugs

📋 问题详情

pageListService方法未校验pageNo参数有效性(应≥1)。当pageNo为0时可能导致索引越界或逻辑错误。

💡 解决方案

在方法开始处添加参数校验:

+    if (pageNo < 1) {
+        throw new IllegalArgumentException("Page number must be ≥1");
+    }

您的反馈对我们很重要!(建议右键在新标签页中打开以下链接)

有用意见👍无用意见👎错误意见❌

@@ -172,7 +172,7 @@
serviceViews.setTotalCount(page.getTotalCount());
serviceViews.setPageNumber(page.getPageNumber());
serviceViews.setPagesAvailable(page.getPagesAvailable());
for (Service each : services) {
for (Service each : page.getPageItems()) {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

修正分页计算逻辑中的变量名错误

🔴 Blocker | 🐞 Bugs

📋 问题详情

在第172行的循环中,迭代对象应为分页后的结果page.getPageItems(),但代码中错误使用了services变量名。该变量名未定义,会导致编译错误。

💡 解决方案

将变量名修正为分页结果:

-for (Service each : services) {
+for (Service each : page.getPageItems()) {

您的反馈对我们很重要!(建议右键在新标签页中打开以下链接)

有用意见👍无用意见👎错误意见❌

Comment on lines 257 to 262

private String getRegexString(String target) {
return StringUtils.isBlank(target) ? Constants.ANY_PATTERN
: Constants.ANY_PATTERN + target + Constants.ANY_PATTERN;
}

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

修正正则表达式构造逻辑

🟡 Major | 🔒 Security Hotspots

📋 问题详情

getRegexString方法拼接的正则表达式存在潜在注入风险。当输入包含特殊字符时可能导致匹配逻辑错误。

💡 解决方案

使用Pattern.quote处理特殊字符:

-        : Constants.ANY_PATTERN + target + Constants.ANY_PATTERN;
+        : Pattern.quote(target);

您的反馈对我们很重要!(建议右键在新标签页中打开以下链接)

有用意见👍无用意见👎错误意见❌


assertNotNull(result);
assertEquals(3, result.getTotalCount(), "Total service count should be 3");
assertEquals(2, result.getPageNumber(), "Current page number should be 2");
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

修正分页测试用例的断言逻辑错误

🟢 Minor | 🧹 Code Smells

📋 问题详情

在testListService测试用例(第194行)中,当总记录数为3且分页大小为1时,pagesAvailable应为3而非4。当前断言值会导致测试失败。

💡 解决方案

调整分页计算断言:

-assertEquals(4, result.getPagesAvailable(), "PagesAvailable should = (totalCount / pageSize) + 1");
+assertEquals(3, result.getPagesAvailable(), "PagesAvailable should be ceil(3/1)=3");

您的反馈对我们很重要!(建议右键在新标签页中打开以下链接)

有用意见👍无用意见👎错误意见❌

@OmCheeLin
Copy link
Contributor Author

@KomachiSion I have repaired it.

KomachiSion
KomachiSion previously approved these changes Jun 11, 2025
@OmCheeLin
Copy link
Contributor Author

@KomachiSion Is this an unstable test?

@wuyfee
Copy link

wuyfee commented Jun 11, 2025

$\color{red}{FAILURE}$
DETAILS
✅ - docker: success
❌ - deploy (standalone & cluster & standalone_auth): failure
❌ - e2e-java-test (standalone & cluster & standalone_auth): skipped
❌ - e2e-go-test (standalone & cluster): skipped
❌ - e2e-cpp-test (standalone & cluster): skipped
❌ - e2e-csharp-test (standalone & cluster): skipped
❌ - e2e-nodejs-test (standalone & cluster): skipped
❌ - e2e-python-test (standalone & cluster): skipped
✅ - clean (standalone & cluster & standalone_auth): success

@KomachiSion
Copy link
Collaborator

@KomachiSion Is this an unstable test?

Please sync develop branch and retry, ut problem has fixed.

@OmCheeLin
Copy link
Contributor Author

@KomachiSion Is this an unstable test?

Please sync develop branch and retry, ut problem has fixed.

done

@KomachiSion KomachiSion merged commit d403cd2 into alibaba:develop Jun 16, 2025
2 of 4 checks passed
@wuyfee
Copy link

wuyfee commented Jun 16, 2025

$\color{red}{FAILURE}$
DETAILS
✅ - docker: success
❌ - deploy (standalone & cluster & standalone_auth): failure
❌ - e2e-java-test (standalone & cluster & standalone_auth): skipped
❌ - e2e-go-test (standalone & cluster): skipped
❌ - e2e-cpp-test (standalone & cluster): skipped
❌ - e2e-csharp-test (standalone & cluster): skipped
❌ - e2e-nodejs-test (standalone & cluster): skipped
❌ - e2e-python-test (standalone & cluster): skipped
✅ - clean (standalone & cluster & standalone_auth): success

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

NACOS 3.0.0 服务列表分页存在问题
5 participants