SkyeYoung commented on code in PR #12333: URL: https://github.com/apache/apisix/pull/12333#discussion_r2158170340
########## apisix/core/config_yaml.lua: ########## @@ -69,9 +68,36 @@ local mt = { end } +local apisix_config +local apisix_config_mtime +local apisix_config_path + +local apisix_yaml_path = profile:yaml_path("apisix") +local apisix_json_path = ngx.re.sub(apisix_yaml_path, [[\.yaml$]], ".json", "jo") +local file_configs = { + {path = apisix_yaml_path, type = "yaml"}, + {path = apisix_json_path, type = "json"} +} + +local function get_config_file_info() + local paths_str = "" Review Comment: After communicating with membphis and others, I found that it needed to be reconstructed, and the current one is indeed not good enough. -- 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