forked from D-Net/dnet-hadoop
added code to filter out null originalId from the dump
This commit is contained in:
parent
ef1d8aef17
commit
76bcab98ce
|
@ -113,7 +113,7 @@ public class DumpGraphEntities implements Serializable {
|
||||||
|
|
||||||
datasource.setId(d.getId());
|
datasource.setId(d.getId());
|
||||||
|
|
||||||
Optional.ofNullable(d.getOriginalId()).ifPresent(oId -> datasource.setOriginalId(oId));
|
Optional.ofNullable(d.getOriginalId()).ifPresent(oId -> datasource.setOriginalId(oId.stream().filter(Objects::nonNull).collect(Collectors.toList())));
|
||||||
|
|
||||||
Optional
|
Optional
|
||||||
.ofNullable(d.getPid())
|
.ofNullable(d.getPid())
|
||||||
|
|
Loading…
Reference in New Issue