Amit Pawar
Amit Pawar
@kenneth-arista Tested with 2205 build and I saw that there is no support for namespace in -show priority-group - CLI. Please let me know if I am missing something here....
@vmittal-msft , @kenneth-arista - I see that following pull-request is tagged for 202405 but seems not merged yet. https://github.com/sonic-net/sonic-utilities/pull/3058 I tried this on 202405 and still seeing the issue.
We had debug session with Broadcom pertaining to this. Existing Snappi-IXIA [test case](https://github.com/sonic-net/sonic-mgmt/blob/master/tests/snappi_tests/multidut/ecn/test_multidut_dequeue_ecn_with_snappi.py) This testcase sets the Kmin and Kmax to 50 and 51 packets respectively, and hence only single...
@sdszhang - Existing helper files might also need change to remove/modify to enable/disable credit-watchdog.
I have added Nokia specific code change using the following code. Will this work for you? We can write a generic function for this and call it whenever required. ```...
@sdszhang 👍 That sounds good but it returns class object. Improvising it further, this will work better: duthost1.get_port_asic_instance().get_asic_namespace() Example: (Pdb) duthost1.get_port_asic_instance('Ethernet88').get_asic_namespace() 'asic0' (Pdb) duthost1.get_port_asic_instance('Ethernet144').get_asic_namespace() 'asic1' Thanks, -A
This issue was addressed via PR #13546 . Hence closing this issue. Thanks,
@vmittal-msft , @YatishSVC: I am working on following: - Adding one more combination to test with default ECN parameters. - Add changes for the dynamic port selection. Once done, I...
Created a new pull-request to track this.
@sdszhang , @selldinesh This is achievable. ``` amit_port_list = get_snappi_ports new_port_list = [] for item in amit_port_list: if (((int(item['speed'])/1000) == port_map[1]) or ((int(item['speed'])/1000) == port_map[3])): new_port_list.append(item) port_table = defaultdict(dict) for...