diff --git a/cfgmgr/intfmgrd.cpp b/cfgmgr/intfmgrd.cpp index 9ed3653333..d07cb9af78 100644 --- a/cfgmgr/intfmgrd.cpp +++ b/cfgmgr/intfmgrd.cpp @@ -62,8 +62,6 @@ int main(int argc, char **argv) WarmStart::checkWarmStart("intfmgrd", "swss"); IntfMgr intfmgr(&cfgDb, &appDb, &stateDb, cfg_intf_tables); - - // TODO: add tables in stateDB which interface depends on to monitor list std::vector cfgOrchList = {&intfmgr}; swss::Select s; diff --git a/cfgmgr/portmgrd.cpp b/cfgmgr/portmgrd.cpp index 180bbc1d63..944a881d06 100644 --- a/cfgmgr/portmgrd.cpp +++ b/cfgmgr/portmgrd.cpp @@ -53,8 +53,6 @@ int main(int argc, char **argv) DBConnector stateDb("STATE_DB", 0); PortMgr portmgr(&cfgDb, &appDb, &stateDb, cfg_port_tables); - - // TODO: add tables in stateDB which interface depends on to monitor list vector cfgOrchList = {&portmgr}; swss::Select s; diff --git a/cfgmgr/vrfmgrd.cpp b/cfgmgr/vrfmgrd.cpp index 735e59191d..c7ca49b6bc 100644 --- a/cfgmgr/vrfmgrd.cpp +++ b/cfgmgr/vrfmgrd.cpp @@ -64,7 +64,6 @@ int main(int argc, char **argv) isWarmStart = WarmStart::isWarmStart(); - // TODO: add tables in stateDB which interface depends on to monitor list std::vector cfgOrchList = {&vrfmgr}; swss::Select s; diff --git a/orchagent/qosorch.cpp b/orchagent/qosorch.cpp index 2f8378d284..515d591e00 100644 --- a/orchagent/qosorch.cpp +++ b/orchagent/qosorch.cpp @@ -1338,11 +1338,6 @@ task_process_status QosOrch::handleSchedulerTable(Consumer& consumer, KeyOpField attr.value.u8 = (uint8_t)stoi(fvValue(*i)); sai_attr_list.push_back(attr); } - else if (fvField(*i) == scheduler_priority_field_name) - { - // TODO: The meaning is to be able to adjust priority of the given scheduler group. - // However currently SAI model does not provide such ability. - } else if (fvField(*i) == scheduler_meter_type_field_name) { sai_meter_type_t meter_value = scheduler_meter_map.at(fvValue(*i)); diff --git a/orchagent/qosorch.h b/orchagent/qosorch.h index b5e2e1ad86..f677e68a01 100644 --- a/orchagent/qosorch.h +++ b/orchagent/qosorch.h @@ -44,7 +44,6 @@ const string scheduler_algo_DWRR = "DWRR"; const string scheduler_algo_WRR = "WRR"; const string scheduler_algo_STRICT = "STRICT"; const string scheduler_weight_field_name = "weight"; -const string scheduler_priority_field_name = "priority"; const string scheduler_meter_type_field_name = "meter_type"; const string scheduler_min_bandwidth_rate_field_name = "cir";//Committed Information Rate const string scheduler_min_bandwidth_burst_rate_field_name = "cbs";//Committed Burst Size