ibessonov commented on code in PR #5728:
URL: https://github.com/apache/ignite-3/pull/5728#discussion_r2068633121
##########
modules/configuration/src/main/java/org/apache/ignite/internal/configuration/ConfigurationChanger.java:
##########
@@ -670,14 +688,21 @@ private void validateConfiguration(SuperRoot curRoots,
SuperRoot changes) {
private ConfigurationStorageListener configurationStorageListener() {
return changedEntries -> {
+ Map<String, ? extends Serializable> changedValues =
changedEntries.values();
+
+ // We need to ignore deletion of deprecated values.
+ for (String ignoredValue : ignoredKeys) {
+ changedValues.remove(ignoredValue);
+ }
Review Comment:
I see, my bad. Should have realized that myself
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]