[stats wf] indicators across stats dbs & updates in the org ids #248

Closed
dimitris.pierrakos wants to merge 1742 commits from beta into beta2master_sept_2022
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 75551ad4ec - Show all commits

View File

@ -90,7 +90,6 @@ public class SparkBulkTagJob {
log.info("pathMap: {}", parser.get("pathMap"));
String protoMappingPath = parser.get("pathMap");
final String hdfsNameNode = parser.get("nameNode");
log.info("nameNode: {}", hdfsNameNode);

View File

@ -1,3 +1,4 @@
package eu.dnetlib.dhp.bulktag.actions;
import java.io.Serializable;
@ -37,7 +38,7 @@ public class ExecSubstringAction implements Serializable {
}
public String execSubstring() {
return this.value.substring(Integer.valueOf(this.from), Integer.valueOf(this.to));
return this.value.substring(Integer.valueOf(this.from), Integer.valueOf(this.to));
}
}
}