Fix fetching of result traceback in job details.

Add it to the list of things to subscribe to and fetch at the end.
This commit is contained in:
Bill Nottingham 2019-08-30 14:17:12 -04:00 committed by Jake McDermott
parent fd32eff281
commit a0671bd36a

View File

@ -871,7 +871,8 @@ function JobDetailsController (
instanceGroup,
environment,
artifacts,
executionNode
executionNode,
resultTraceback
}) => {
vm.started = getStartDetails(started);
vm.finished = getFinishDetails(finished);
@ -883,6 +884,7 @@ function JobDetailsController (
vm.artifacts = getArtifactsDetails(artifacts);
vm.executionNode = getExecutionNodeDetails(executionNode);
vm.inventoryScm = getInventoryScmDetails(inventoryScm.id, inventoryScm.status);
vm.resultTraceback = getResultTracebackDetails(resultTraceback);
vm.scmRevision = getSCMRevisionDetails(scmRevision);
vm.instanceGroup = getInstanceGroupDetails(instanceGroup);
vm.status = getStatusDetails(status);