mjsax commented on a change in pull request #8852: URL: https://github.com/apache/kafka/pull/8852#discussion_r438533374
########## File path: streams/src/main/java/org/apache/kafka/streams/processor/internals/StandbyTask.java ########## @@ -57,30 +59,31 @@ * @param stateDirectory the {@link StateDirectory} created by the thread */ StandbyTask(final TaskId id, - final Set<TopicPartition> partitions, final ProcessorTopology topology, - final StreamsConfig config, - final StreamsMetricsImpl metrics, - final ProcessorStateManager stateMgr, final StateDirectory stateDirectory, + final ProcessorStateManager stateMgr, + final Set<TopicPartition> partitions, + final StreamsConfig config, + final InternalProcessorContext processorContext, final ThreadCache cache, - final InternalProcessorContext processorContext) { + final StreamsMetricsImpl metrics) { super(id, topology, stateDirectory, stateMgr, partitions); Review comment: Put "super parameter first" in constructor list ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org