ibessonov commented on a change in pull request #72:
URL: https://github.com/apache/ignite-3/pull/72#discussion_r598565194
##########
File path:
modules/configuration/src/main/java/org/apache/ignite/configuration/internal/util/ConfigurationUtil.java
##########
@@ -255,8 +255,12 @@ private InnerConfigurationSource(Map<String, ?> map) {
assert val == null || val instanceof Map || val instanceof
Serializable;
- if (val == null)
- node.construct(key, null);
+ if (val == null) {
+ if (node instanceof NamedListNode)
+ ((NamedListNode<?>)node).forceDelete(key); // Bad,
but necessary.
Review comment:
Sure :)
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]