You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!--
Please make sure you've read and understood our contributing guidelines;
https://github.com/sonic-net/SONiC/blob/gh-pages/CONTRIBUTING.md
Please provide following information to help code review process a bit easier:
-->
### Description of PR
<!--
- Please include a summary of the change and which issue is fixed.
- Please also include relevant motivation and context. Where should reviewer start? background context?
- List any dependencies that are required for this change.
-->
Summary:
Fix method collect_dut_lossless_prio.
The pfc_enable parameter can be empty.
Without this change we can get error:
```
> result = [int(x) for x in port_qos_map[intf]['pfc_enable'].split(',')]
E ValueError: invalid literal for int() with base 10: ''
```
PRs with related changes:
sonic-net/sonic-buildimage#22252sonic-net/sonic-buildimage#22067
### Type of change
<!--
- Fill x for your type of change.
- e.g.
- [x] Bug fix
-->
- [ ] Bug fix
- [ ] Testbed and Framework(new/improvement)
- [ ] New Test case
- [ ] Skipped for non-supported platforms
- [x] Test case improvement
### Back port request
- [ ] 202012
- [ ] 202205
- [ ] 202305
- [ ] 202311
- [ ] 202405
- [x] 202411
### Approach
#### What is the motivation for this PR?
stable test_pretest.py
#### How did you do it?
Used method `get`
#### How did you verify/test it?
Test passed after changes
<!--
(If it's a new feature, new test case)
Did you update documentation/Wiki relevant to your implementation?
Link to the wiki page?
-->
0 commit comments