From 577b4a1cf8d02dbb45461a12681b19ce4d8d3400 Mon Sep 17 00:00:00 2001 From: Swetha Haridasula Date: Tue, 24 Sep 2024 06:41:56 +0000 Subject: [PATCH] added changes to internal/juniper/juniper.go --- internal/juniper/juniper.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/internal/juniper/juniper.go b/internal/juniper/juniper.go index 515117d..215b227 100644 --- a/internal/juniper/juniper.go +++ b/internal/juniper/juniper.go @@ -113,12 +113,12 @@ func (n *Namer) IsFixedFormFactor() bool { // CommonQoSQueues is an implementation of namer.CommonQoSQueues. func (n *Namer) CommonQoSQueues(*namer.QoSParams) (*namer.CommonQoSQueueNames, error) { return &namer.CommonQoSQueueNames{ - NC1: "7", - AF4: "6", - AF3: "4", - AF2: "3", - AF1: "2", - BE1: "0", - BE0: "1", + NC1: "NC1", + AF4: "AF4", + AF3: "AF3", + AF2: "AF2", + AF1: "AF1", + BE1: "BE1", + BE0: "BE0", }, nil }