monkeyDluffy6017 commented on code in PR #9580: URL: https://github.com/apache/apisix/pull/9580#discussion_r1254144083
########## apisix/admin/plugins.lua: ########## @@ -85,8 +106,14 @@ function _M.get(name) end -function _M.get_plugins_list() - local plugins = core.config.local_conf().plugins +function _M.get_plugins_list(subsystem) + local plugins + if subsystem == "stream" then + plugins = core.config.local_conf().stream_plugins + else + plugins = core.config.local_conf().plugins + end + Review Comment: The stream plugins is not in the directory `apisix.plugins` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
