Merge "Making workflow trace logging more consistent"
This commit is contained in:
commit
cde8a9a23a
@ -95,8 +95,8 @@ class AbstractEngine(object):
|
|||||||
#TODO(rakhmerov): validate state transition
|
#TODO(rakhmerov): validate state transition
|
||||||
task = db_api.task_get(workbook_name, execution_id, task_id)
|
task = db_api.task_get(workbook_name, execution_id, task_id)
|
||||||
|
|
||||||
wf_trace_msg = "Task '%s', [%s -> %s" % (task['name'],
|
wf_trace_msg = "Task '%s' [%s -> %s" % \
|
||||||
task['state'], state)
|
(task['name'], task['state'], state)
|
||||||
|
|
||||||
wf_trace_msg += ']' if state == states.ERROR \
|
wf_trace_msg += ']' if state == states.ERROR \
|
||||||
else ", result = %s]" % result
|
else ", result = %s]" % result
|
||||||
@ -119,7 +119,7 @@ class AbstractEngine(object):
|
|||||||
|
|
||||||
if execution['state'] != new_exec_state:
|
if execution['state'] != new_exec_state:
|
||||||
wf_trace_msg = \
|
wf_trace_msg = \
|
||||||
"Execution '%s', [%s -> %s]" % \
|
"Execution '%s' [%s -> %s]" % \
|
||||||
(execution_id, execution['state'], new_exec_state)
|
(execution_id, execution['state'], new_exec_state)
|
||||||
WORKFLOW_TRACE.info(wf_trace_msg)
|
WORKFLOW_TRACE.info(wf_trace_msg)
|
||||||
|
|
||||||
|
@ -30,7 +30,6 @@ WORKFLOW_TRACE = logging.getLogger(cfg.CONF.workflow_trace_log_name)
|
|||||||
|
|
||||||
|
|
||||||
class Executor(object):
|
class Executor(object):
|
||||||
|
|
||||||
def __init__(self, transport=None):
|
def __init__(self, transport=None):
|
||||||
self.transport = engine.get_transport(transport)
|
self.transport = engine.get_transport(transport)
|
||||||
self.engine = client.EngineClient(self.transport)
|
self.engine = client.EngineClient(self.transport)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user