[add data] fixed bug where I didnt pass in pipeline

This commit is contained in:
Jim Unger 2016-03-29 13:03:23 -05:00
parent 7e697cf3e9
commit 9b25c3bfbe

View file

@ -170,9 +170,9 @@ export default class Pipeline {
// Updates the state of the pipeline and processors with the results
// from an ingest simulate call.
applySimulateResults(simulateResults) {
updateProcessorOutputs(simulateResults);
updateErrorState();
updateProcessorInputs();
updateProcessorOutputs(this, simulateResults);
updateErrorState(this);
updateProcessorInputs(this);
this.updateOutput();
}