-
Notifications
You must be signed in to change notification settings - Fork 154
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
Cannot "Insert" simple bridge #259
Comments
another TODO: use the full database model in example/vswitchd in our integration test! |
@dave-tucker I guess the easiest fix is to change |
@amorenoz yes I think that would be easiest... we could also not use arrays - which doesn't give us bounds checking any more 😢 but it might make the code simpler. |
bounds checking could be implemented somewhere in the bindings layer even if the native type is a slice |
Currently on main, if you try the simplest of examples (
example/play_with_ovs
) you get the following errorThe reason is that the default initialization of
FloodVlans [4096] int
is a fully populated array full of zeros, which is considered non-default and incorrectly sent to the server as part of the rowThe text was updated successfully, but these errors were encountered: