We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The RVPS config currently looks like this
pub struct Config { #[serde(default = "default_store_type")] pub store_type: String, #[serde(default = "default_store_config")] pub store_config: Value, }
This doesn't really match how we've recently been creating configs inside of an enum and have store_config as an opaque JSON value doesn't seem ideal.
store_config
We should probably update this to have an enum containing a config, like we've started doing elsewhere in Trustee.
The text was updated successfully, but these errors were encountered:
I have a pending PR for this.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The RVPS config currently looks like this
This doesn't really match how we've recently been creating configs inside of an enum and have
store_config
as an opaque JSON value doesn't seem ideal.We should probably update this to have an enum containing a config, like we've started doing elsewhere in Trustee.
The text was updated successfully, but these errors were encountered: