From 3aee1430e6575aeebbf390403d57c3550518e966 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Thu, 2 May 2024 16:54:21 +0200 Subject: [PATCH] default to no for 4.9.x --- pdns/auth-main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/auth-main.cc b/pdns/auth-main.cc index e2c6f77bd2..80db76f122 100644 --- a/pdns/auth-main.cc +++ b/pdns/auth-main.cc @@ -307,7 +307,7 @@ static void declareArguments() ::arg().setSwitch("8bit-dns", "Allow 8bit dns queries") = "no"; #ifdef HAVE_LUA_RECORDS ::arg().setSwitch("enable-lua-records", "Process LUA records for all zones (metadata overrides this)") = "no"; - ::arg().setSwitch("lua-records-insert-whitespace", "Insert whitespace when combining LUA chunks") = "no"; + ::arg().setSwitch("lua-records-insert-whitespace", "Insert whitespace when combining LUA chunks") = "yes"; ::arg().set("lua-records-exec-limit", "LUA records scripts execution limit (instructions count). Values <= 0 mean no limit") = "1000"; ::arg().set("lua-health-checks-expire-delay", "Stops doing health checks after the record hasn't been used for that delay (in seconds)") = "3600"; ::arg().set("lua-health-checks-interval", "LUA records health checks monitoring interval in seconds") = "5"; -- 2.47.2