From 27576ed0621dbef3fcfc2bd8060b03dd949905f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Vavru=C5=A1a?= <marek.vavrusa@nic.cz> Date: Thu, 30 Jul 2015 19:55:33 +0200 Subject: [PATCH] tests/integration: fixed missing cache in config --- tests/test_integration.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_integration.py b/tests/test_integration.py index bc9537cb2..62ededf94 100755 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -192,6 +192,7 @@ def play_object(path): childaddr = testserver.get_local_addr_str(socket.AF_INET,CHILD_IFACE) fd = os.open( TMPDIR + "/config", os.O_RDWR|os.O_CREAT ) os.write(fd, "net.listen('{}',53)\n".format(childaddr) ) + os.write(fd, "cache.size = 10*MB\n") os.write(fd, "modules = {'hints'}\n") os.write(fd, "hints.root({['k.root-servers.net'] = '%s'})\n" % selfaddr) os.close(fd) -- GitLab