Skip to content
Snippets Groups Projects
Commit 27576ed0 authored by Marek Vavruša's avatar Marek Vavruša
Browse files

tests/integration: fixed missing cache in config

parent 7d41bd59
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment