We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description Prior to b38562a, 'SonicAsic' class method 'command' signature was def command(self, *args, **kwargs):
Now it uses a new format: def command(self, cmdstr):
Steps to reproduce the issue:
Describe the results you received:
> result = dut_asic.command(argv = ["arp", "-n"]) E TypeError: command() got an unexpected keyword argument 'argv'
Describe the results you expected: Test should run without any errors
Additional information you deem important:
**Output of `show version`:**
201911 image
The text was updated successfully, but these errors were encountered:
[qos] Align SonicAsic command args to the new method format (#3108)
6bfba6f
Summary: Fixes #3107 Signed-off-by: Neetha John <[email protected]> Ran qos sai test and do not see the failures
neethajohn
Successfully merging a pull request may close this issue.
Description
Prior to b38562a, 'SonicAsic' class method 'command' signature was
def command(self, *args, **kwargs):
Now it uses a new format:
def command(self, cmdstr):
Steps to reproduce the issue:
Describe the results you received:
Describe the results you expected:
Test should run without any errors
Additional information you deem important:
201911 image
The text was updated successfully, but these errors were encountered: