You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can you point me to the varlink structs which have the problem?
Normally "null" means None, and the struct field should be an Option/nullable denoted with a ?.
Podman's varlink implementation often gives null in place of an empty array (they use optional arrays too in other places, but those of course work fine). The CLI will reveal this just fine, showing null in place of the array whenever it is empty, but of course other usage will expect a specific type and produce an error.
Using this with Podman will result in
invalid type: null, expected a sequence
on many endpoints, as empty lists are omitted in favor ofnull
.I'm not sure if this is an issue in my usage or some change within Serde.
The text was updated successfully, but these errors were encountered: