moonming commented on a change in pull request #1217: enable local DNS
URL: https://github.com/apache/incubator-apisix/pull/1217#discussion_r391977401
 
 

 ##########
 File path: bin/apisix
 ##########
 @@ -609,6 +632,22 @@ local function init()
         sys_conf["worker_processes"] = "auto"
     end
 
+    if sys_conf["enable_local_dns"] == true then
+        local dns_addrs, err = local_dns_resolver("/etc/resolv.conf")
+        if not dns_addrs then
+            error("failed to import local DNS: " .. err)
+        end
+
+        local dns_resolver = sys_conf["dns_resolver"]
+        if dns_resolver then
+            for _, addr  in ipairs(dns_addrs) do
+                table.insert(dns_resolver, addr)
 
 Review comment:
   this is not a small PR, please add test cases, otherwise I can not merge it.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to