Agent: Modify process list collection PBA to return dict of processes instead of string

This commit is contained in:
Shreya Malviya 2022-02-14 19:18:39 +05:30
parent 5ab7bc520e
commit afa7d4fca4
1 changed files with 1 additions and 1 deletions

View File

@ -54,4 +54,4 @@ class ProcessListCollection(PBA):
}
continue
return self.command, (str(processes), success_state)
return self.command, (processes, success_state)