@@ -139,7 +139,7 @@ public abstract class AbstractProcessorTaskExecutor implements ProcessorTaskExec
139
139
private final InternalStatisticsReceiver internalStatisticsReceiver ;
140
140
private final VolumeGroupNameProvider volumeGroupNameProvider ;
141
141
142
- private Processor streamProcessor ;
142
+ private Processor processor ;
143
143
private ProcessorFilter processorFilter ;
144
144
private ProcessorTask processorTask ;
145
145
private Source streamSource ;
@@ -198,7 +198,7 @@ public ProcessorResult exec(final TaskContext taskContext,
198
198
final ProcessorFilter processorFilter ,
199
199
final ProcessorTask processorTask ,
200
200
final Source streamSource ) {
201
- this .streamProcessor = processor ;
201
+ this .processor = processor ;
202
202
this .processorFilter = processorFilter ;
203
203
this .processorTask = processorTask ;
204
204
this .streamSource = streamSource ;
@@ -302,8 +302,8 @@ private void process(final TaskContext taskContext) {
302
302
// Set the pipeline so it can be used by a filter if needed.
303
303
pipelineDoc = pipelineStore .readDocument (getProcessDecorator ().getPipeline ());
304
304
if (pipelineDoc == null ) {
305
- final String msg = "Pipeline " + streamProcessor .getPipelineUuid ()
306
- + " cannot be found for processor with id " + streamProcessor .getId ();
305
+ final String msg = "Pipeline " + processor .getPipelineUuid ()
306
+ + " cannot be found for processor with id " + processor .getId ();
307
307
LOGGER .error (msg );
308
308
throw new RuntimeException (msg );
309
309
}
@@ -331,7 +331,7 @@ private void process(final TaskContext taskContext) {
331
331
LOGGER .info (() -> processingInfo );
332
332
333
333
// Hold the source and feed so the pipeline filters can get them.
334
- streamProcessorHolder .setStreamProcessor (streamProcessor , processorTask );
334
+ streamProcessorHolder .setStreamProcessor (processor , processorTask );
335
335
336
336
// Process the streams.
337
337
final PipelineData pipelineData = pipelineDataCache .get (pipelineDoc );
0 commit comments