-
Notifications
You must be signed in to change notification settings - Fork 76
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
addons: vxlan: fix VNI filter on single VXLAN device #271
addons: vxlan: fix VNI filter on single VXLAN device #271
Conversation
In af8d5db, the transformation of `vnis` (list) to `vnisd` (dictionary) left a reference to `vnis` which is now undefined. We just remove the line as the conversion from range to ints is done earlier in the function. Signed-off-by: Vincent Bernat <[email protected]>
Side question: is it expected the source code of ifupdown2 in Cumulus is not distributed anymore? I did check on the latest Cumulus VX and the code is already fixed there and I wanted to check if there was any other diff with GitHub. Since it's Python, one can just take the binary package. The diff seems substantial between the two codebases:
However, many differences are minor and I suppose one of the code base (Nvidia one) got through a linter. I only noticed a few differences:
This is just a cursory glance and there may be small changes that are bugfix that I did miss (I think I would have likely missed the one in this PR). |
FI, I have put the changes in PR #272. |
@vincentbernat we use an internal repository for ifupdown2 where we actively push our changes daily/weekly. So it takes quite some time to review the changes (and diff between github/internal), and making sure they don't break upstream (and CL ifupdown2). I pretty much maintain this github repo on my free time, hence the long delay for the PRs, open issues and sync between github/internal repo. |
In af8d5db, the transformation of
vnis
(list) tovnisd
(dictionary) left a reference tovnis
which is now undefined. We just remove the line as the conversion from range to ints is done earlier in the function.