mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-09-02 03:12:34 +01:00
fix: telemetry: ignore all return codes
Telemetry seems to return random values as return code, so completely ignore them and don't treat any values as errors.
This commit is contained in:
@@ -133,7 +133,7 @@ class Telemetry(Workload):
|
||||
|
||||
def run(self, context):
|
||||
self.logger.debug(self.command)
|
||||
self.raw_output, _ = check_output(self.command, shell=True, timeout=self.run_timeout, ignore=range(256))
|
||||
self.raw_output, _ = check_output(self.command, shell=True, timeout=self.run_timeout, ignore='all')
|
||||
|
||||
def update_result(self, context): # pylint: disable=too-many-locals
|
||||
if not self.raw_output:
|
||||
|
Reference in New Issue
Block a user