ADM TypeError if top level process doesn't exist or children of top level process don't existDescriptionAfter running discovery on a server that has a top level process with no children (e.g: systemd). ADM throws "TypeError: Cannot delete property "[PID of top level process]" of undefined" errorsSteps to Reproduce Run Discovery on a server that has a top level process with no childrenWorkaroundFrom [Script : EnrichProcessesAndConnections, sys_id : 7ca965319721300010cb1bd74b297501, line :499]===========================================================Before Changedelete this.getProcess(proc.ppid)._kids[proc.pid];-----------------------------------------------------------------------------------------------After Changeif (this.getProcess(proc.ppid) && this.getProcess(proc.ppid)._kids[proc.pid])delete this.getProcess(proc.ppid)._kids[proc.pid];=============================================================Related Problem: PRB1505890