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
The type of a configuration parameter was change in #9625
This breaks backwards compatibility. For example, tidb-operator no longer works with the latest TiDB.
The request is to establish a technique for making type changes in the toml that are backwards compatible.
The usual approaches would be
Parse into multiple different types (either a string or a boolean). This is often supported for YAML, but I am not sure about doing this in TOML with go.
Use a new key name for the new type (I am having trouble coming up with a good name) and support the old key type
The text was updated successfully, but these errors were encountered:
The type of a configuration parameter was change in #9625
This breaks backwards compatibility. For example, tidb-operator no longer works with the latest TiDB.
The request is to establish a technique for making type changes in the toml that are backwards compatible.
The usual approaches would be
The text was updated successfully, but these errors were encountered: