bzp2010 commented on code in PR #12179: URL: https://github.com/apache/apisix/pull/12179#discussion_r2063188770
########## apisix/admin/init.lua: ########## @@ -453,18 +463,34 @@ local uri_route = { } +local standalone_uri_route = { + http_head_route, + { + paths = [[/apisix/admin/configs]], + methods = {"GET", "PUT"}, + handler = standalone_run, + }, +} + + function _M.init_worker() local local_conf = core.config.local_conf() if not local_conf.apisix or not local_conf.apisix.enable_admin then return end - router = route.new(uri_route) + local is_yaml_config_provider = local_conf.deployment.config_provider == "yaml" + + router = route.new(is_yaml_config_provider and standalone_uri_route or uri_route) Review Comment: Fixed -- 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: notifications-unsubscr...@apisix.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org