frr task related to this incident : https://github.com/FRRouting/frr/issues/16095 and forum case: https://forum.vyos.io/t/issues-with-mp-bgp-and-ipv6-link-local-peers-using-extended-next-hop/15781
- Feed Queries
- All Stories
- Search
- Feed Search
- Transactions
- Transaction Logs
All Stories
Jan 22 2025
This version is outdated VyOS 1.5-rolling-202309270022 and not supported
update to the more recent version and re-check https://vyos.net/get/nightly-builds/
I can see the tests are NOK for all the versions - working in a separate branch to fix
Doesn't look like there is anything to fix for this one now
Jan 21 2025
Are we closing this? Or we have some glowing example of the wrong processing?
Line 86 in python/vyos/utils/process.py breaks the git commit-archive functionality since it passes a list to the rc_cmd function which eventually gets passed to popen. The new line added for this wrapper converts the list to a string similar to "['git', 'clone', 'git@<github url>', '/tmp/git-commit-archive-ypvbmg7z/repository', '--depth=1']". Since there is no wrapper, the command becomes a space followed by that string rather than the intended git clone git@<github url> /tmp/git-commit-archive-ypvbmg7z/repository --depth=1. I expect it would be better if get_wrapper returned a similar list, then if the passed in command is a string, join the wrapper and prepend to the string, otherwise if the command is a list prepend the elements of the wrapper to the list.
Could be this issue https://github.com/FRRouting/frr/issues/16095