From 06c8e7f336a933d9d95c6cc6370351ef75bb4b39 Mon Sep 17 00:00:00 2001 From: Charles-Henri Bruyand Date: Thu, 15 Mar 2018 10:18:49 +0100 Subject: [PATCH] dnsdist: Update deprecated syntax used in dist configuration file --- pdns/dnsdistconf.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/dnsdistconf.lua b/pdns/dnsdistconf.lua index ed0b7915d..5c8c50a8f 100644 --- a/pdns/dnsdistconf.lua +++ b/pdns/dnsdistconf.lua @@ -44,7 +44,7 @@ addAction("192.168.1.0/24", PoolAction("abuse")) -- send the queries for the "com" suffix to the "abuse" -- pool, but only up to 100 qps -addAction("com.", QPSPoolRule(100, "abuse")) +addAction("com.", QPSPoolAction(100, "abuse")) -- declare a Lua action function, routing NAPTR queries -- to the abuse pool -- 2.40.0