Skip to content
Snippets Groups Projects
Commit 0c1899a5 authored by Philip ABBET's avatar Philip ABBET
Browse files

Add missing statistics to the LocalExecutor

parent 4d28ad16
No related branches found
No related tags found
No related merge requests found
...@@ -212,7 +212,19 @@ class LocalExecutor(BaseExecutor): ...@@ -212,7 +212,19 @@ class LocalExecutor(BaseExecutor):
return { return {
'status': status, 'status': status,
'statistics': { 'statistics': {
'data': self.io_statistics 'data': self.io_statistics,
'cpu': {
'user': 0.0,
'system': 0.0,
'total': 0.0,
'percent': 0.0,
'processors': 1,
},
'memory': {
'rss': 0,
'limit': 0,
'percent': 0.0,
},
}, },
'stderr': '', 'stderr': '',
'stdout': '', 'stdout': '',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment