From b4fcfc9f027e127fda9d106d5a064ea1ab0984d9 Mon Sep 17 00:00:00 2001 From: jfeng-arista <98421150+jfeng-arista@users.noreply.github.com> Date: Thu, 17 Aug 2023 21:06:09 -0700 Subject: [PATCH] Remove fabric queue counters. (#2862) What I did Remove fabric queue counters. Why I did it This is fixing issue #15586. Where the following messages are seen NOTICE syncd0#syncd: :- setQueueCounterList: FABRIC_QUEUE_STAT_COUNTER: queue oid:0x18d051500000001 does not has supported counters Based on case CS00012300922, the support of these queue counters objects are removed after 9.x for DNX. --- orchagent/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchagent/main.cpp b/orchagent/main.cpp index 4f331940ea..9e9138cb9a 100644 --- a/orchagent/main.cpp +++ b/orchagent/main.cpp @@ -739,7 +739,7 @@ int main(int argc, char **argv) { orchDaemon->setFabricEnabled(true); orchDaemon->setFabricPortStatEnabled(true); - orchDaemon->setFabricQueueStatEnabled(true); + orchDaemon->setFabricQueueStatEnabled(false); } } else