Skip to content
Snippets Groups Projects
Commit 34cf5b70 authored by Zhibin Mai's avatar Zhibin Mai
Browse files

Refactor

parent 3db47e84
No related branches found
No related tags found
4 merge requests!545Draft: add env variables,!543Draft: az/sa-support-index-extended-properties,!540Draft: support index extended properties,!465Index extended properties defined in property configurations
Pipeline #171154 failed
......@@ -588,10 +588,14 @@ public class PropertyConfigurationsServiceImpl implements PropertyConfigurations
spec.setParentKind(configurations.getCode());
spec.setParentObjectIdPath(propertyPath.getRelatedObjectsSpec().getRelatedObjectID());
spec.setChildKind(kindWithMajor);
spec.getChildValuePaths().add(propertyPath.getValueExtraction().getValuePath());
String valuePath = PropertyUtil.removeDataPrefix(propertyPath.getValueExtraction().getValuePath());
if (specs.containsKey(spec.hashCode())) {
specs.get(spec.hashCode()).getChildValuePaths().add(propertyPath.getValueExtraction().getValuePath());
List<String> childValuePaths = specs.get(spec.hashCode()).getChildValuePaths();
if(!childValuePaths.contains(valuePath)) {
childValuePaths.add(valuePath);
}
} else {
spec.getChildValuePaths().add(valuePath);
specs.put(spec.hashCode(), spec);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment