Revolyssup commented on code in PR #12200: URL: https://github.com/apache/apisix/pull/12200#discussion_r2096878688
########## apisix/core/config_yaml.lua: ########## @@ -45,11 +45,16 @@ local pcall = pcall local io = io local ngx = ngx local re_find = ngx.re.find +local process = require("ngx.process") +local worker_id = ngx.worker.id local apisix_yaml_path = profile:yaml_path("apisix") local created_obj = {} local shared_dict - - +local status_report_shared_dict_name = "status-report" +local is_http = ngx.config.subsystem == "http" +if not is_http then + status_report_shared_dict_name = status_report_shared_dict_name .. "-stream" +end Review Comment: we need separate shared dict for stream -- 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