From aa7686ef9a5bcc1d1a8235e551f8f9240b81c447 Mon Sep 17 00:00:00 2001 From: Hari Date: Fri, 22 Jan 2016 19:49:21 +0530 Subject: [PATCH] Update task policy for contrail-dns. When XMPP channel with agent clsoes, the records exported from there are removed in the cleaner task context. Update the task policy to ensure the config and bind tasks do not run in parallel with it. Change-Id: I049149d2c47051805aa3164f947b0572af597ac7 closes-bug: 1533811 --- src/dns/cmn/dns.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/dns/cmn/dns.cc b/src/dns/cmn/dns.cc index 9cdc9ba871b..ac5c2550916 100644 --- a/src/dns/cmn/dns.cc +++ b/src/dns/cmn/dns.cc @@ -81,6 +81,9 @@ void Dns::SetTaskSchedulingPolicy() { exclude_io); const char *garbage_exclude_list[] = { + "dns::Config", + "dns::BindStatus", + "db::DBTable", "bgp::Config", "xmpp::StateMachine", };