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
Currently, loaders are passed an opened Writer before they have any chance to validate that the provided node is a valid format, and do their validation in the write() method. This means that if validation fails, the target file will be erased.
We can add another extension point to AbstractConfiguration loader to perform pre-processing, which will allow us to preserve existing data, even when trying to write invalid data.
The text was updated successfully, but these errors were encountered:
Currently, loaders are passed an opened
Writer
before they have any chance to validate that the provided node is a valid format, and do their validation in thewrite()
method. This means that if validation fails, the target file will be erased.We can add another extension point to AbstractConfiguration loader to perform pre-processing, which will allow us to preserve existing data, even when trying to write invalid data.
The text was updated successfully, but these errors were encountered: