We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@RequestMapping("/search-plugin") public List<ArkPluginModel> searchPlugins(@RequestParam("pluginName") String pluginName) { if (StringUtils.isEmpty(pluginName)) { // 返回全部 return arkMngService.fetchRegisteredPlugins(); } return arkMngService.fetchPluginsByName(pluginName); }
此端代码为插件查询的逻辑,仅获取到了插件列表,插件关联到的应用实例信息没有被计算出来。导致默认列表展示和查询结果展示在应用实例数和关联应用展示部分不一致
The text was updated successfully, but these errors were encountered:
No branches or pull requests
此端代码为插件查询的逻辑,仅获取到了插件列表,插件关联到的应用实例信息没有被计算出来。导致默认列表展示和查询结果展示在应用实例数和关联应用展示部分不一致
The text was updated successfully, but these errors were encountered: