-
Notifications
You must be signed in to change notification settings - Fork 360
New issue
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
utils: T7095: make vrf
and netns
arguments aware of the shell
#4323
base: current
Are you sure you want to change the base?
Conversation
❌ |
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
Conflicts have been resolved. A maintainer will review the pull request shortly. |
CI integration ❌ failed! Details
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR Overview
This PR fixes a regression in the execution of commands involving VRF and network namespaces and removes the obsolete auth parameter.
- Removed the auth parameter from get_wrapper, popen, and cmd functions.
- Updated command construction by switching from string wrappers to list-based wrappers and using shlex.join for proper formatting.
Reviewed Changes
File | Description |
---|---|
python/vyos/utils/process.py | Adjusts VRF/netns command handling and removes obsolete auth usage. |
Copilot reviewed 1 out of 1 changed files in this pull request and generated no comments.
Comments suppressed due to low confidence (1)
python/vyos/utils/process.py:182
- The 'get_wrapper' function now returns a list, so directly interpolating 'wrapper' in the f-string will print its Python list representation rather than a valid shell command. Consider using shlex.join(wrapper) (e.g., command = f'{shlex.join(wrapper)} {command}') to format the command correctly.
command = f'{wrapper} {command}'
return wrapper | ||
|
||
|
||
def popen(command, flag='', shell=None, input=None, timeout=None, env=None, | ||
stdout=PIPE, stderr=PIPE, decode='utf-8', auth='', vrf=None, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason to drop the auth
argument?
Change summary
Changes the
vrf
andnetns
functionality in the utils/process.py to be aware of whether the shell is required or not. Fixes a regression they introduced that broke callers passing a list rather than a string to the popen (and family) of util functions, notably breaking the git commit-archive functionality.I also removed the
auth
parameter as it was not fully implemented, was not used, was not documented, and I could not find any examples of the form it would take, making it difficult to integrate into the refactor.Types of changes
Related Task(s)
https://vyos.dev/T7095
Bug introduced in https://vyos.dev/T6975
Related PR(s)
How to test / Smoketest result
Prior to this patch, the commit-archive will fail with an error similar to the following.
After this change the functionality works again.
Checklist: