From 026d52668635652bd2098e543f31838702c2b1eb Mon Sep 17 00:00:00 2001 From: Hari Date: Fri, 22 Jan 2016 10:06:10 +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: Ic92f147060c39e452742aa67ace7e3a6f3ddc5a3 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", };