fixed condition in result pid cleaning; cleanup

This commit is contained in:
Claudio Atzori 2020-11-16 10:09:17 +01:00
parent 4de8c8b237
commit 6ab1ce53c9
2 changed files with 1 additions and 27 deletions

View File

@ -114,7 +114,7 @@ public class CleaningFunctions {
.stream()
.filter(Objects::nonNull)
.filter(sp -> StringUtils.isNotBlank(StringUtils.trim(sp.getValue())))
.filter(sp -> NONE.equalsIgnoreCase(sp.getValue()))
.filter(sp -> !NONE.equalsIgnoreCase(sp.getValue().trim()))
.filter(sp -> Objects.nonNull(sp.getQualifier()))
.filter(sp -> StringUtils.isNotBlank(sp.getQualifier().getClassid()))
.map(sp -> {

View File

@ -1,26 +0,0 @@
[
{
"paramName": "issm",
"paramLongName": "isSparkSessionManaged",
"paramDescription": "when true will stop SparkSession after job execution",
"paramRequired": false
},
{
"paramName": "ep",
"paramLongName": "entitiesPath",
"paramDescription": "the entities path",
"paramRequired": true
},
{
"paramName": "g",
"paramLongName": "outputPath",
"paramDescription": "the output path to store the dispatched entities",
"paramRequired": true
},
{
"paramName": "class",
"paramLongName": "graphTableClassName",
"paramDescription": "class name modelling the graph table",
"paramRequired": true
}
]