mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-09-20 04:02:36 +01:00
wa: Rename results_processors
to output_processors
For clarity and to better reflect their purpose, rename `results_processors` to `output_processors`.
This commit is contained in:
@@ -48,8 +48,8 @@ class InstrumentError(WAError):
|
||||
pass
|
||||
|
||||
|
||||
class ResultProcessorError(WAError):
|
||||
"""General ResultProcessor error."""
|
||||
class OutputProcessorError(WAError):
|
||||
"""General OutputProcessor error."""
|
||||
pass
|
||||
|
||||
|
||||
@@ -135,7 +135,7 @@ class WorkerThreadError(WAError):
|
||||
orig = self.exc_info[1]
|
||||
orig_name = type(orig).__name__
|
||||
text = 'Exception of type {} occured on thread {}:\n{}\n{}: {}'
|
||||
message = text.format(orig_name, thread, get_traceback(self.exc_info),
|
||||
message = text.format(orig_name, thread, get_traceback(self.exc_info),
|
||||
orig_name, orig)
|
||||
super(WorkerThreadError, self).__init__(message)
|
||||
|
||||
|
Reference in New Issue
Block a user