Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Remove redundant intermediate abstract bean
Browse files Browse the repository at this point in the history
The waitingForPipelines property is already set in all instances.
  • Loading branch information
iay committed May 1, 2017
1 parent 1350294 commit a6e9ecd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
4 changes: 0 additions & 4 deletions mdx/common-beans.xml
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,6 @@
<property name="serializer" ref="serializer"/>
</bean>

<bean id="PipelineDemultiplexerStage" abstract="true" parent="mda.PipelineDemultiplexerStage"
p:waitingForPipelines="true"
/>

<bean id="PipelineMergeStage.deduplicate" abstract="true" parent="mda.PipelineMergeStage"
p:collectionMergeStrategy-ref="deduplicateMergeStrategy"/>

Expand Down
8 changes: 4 additions & 4 deletions mdx/uk/generate.xml
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@
<!--
Fork a new output pipeline for the registrar statistics.
-->
<bean id="rawRegistrarDemux" parent="PipelineDemultiplexerStage">
<bean id="rawRegistrarDemux" parent="mda.PipelineDemultiplexerStage">
<property name="pipelineAndSelectionStrategies">
<list>
<bean class="net.shibboleth.utilities.java.support.collection.Pair">
Expand Down Expand Up @@ -890,7 +890,7 @@
metadata as closely as possible, so the fork must happen before
too many UK-specific transformations are performed.
-->
<bean id="registrarDemux" parent="PipelineDemultiplexerStage">
<bean id="registrarDemux" parent="mda.PipelineDemultiplexerStage">
<property name="pipelineAndSelectionStrategies">
<list>
<bean class="net.shibboleth.utilities.java.support.collection.Pair">
Expand Down Expand Up @@ -952,7 +952,7 @@
<!--
Fork into new pipelines for the production, fallback and WAYF aggregates.
-->
<bean id="productionDemux" parent="PipelineDemultiplexerStage">
<bean id="productionDemux" parent="mda.PipelineDemultiplexerStage">
<property name="pipelineAndSelectionStrategies">
<list>
<bean class="net.shibboleth.utilities.java.support.collection.Pair">
Expand Down Expand Up @@ -1007,7 +1007,7 @@
<!--
Fork into new pipelines for additional aggregates.
-->
<bean id="preProductionDemux" parent="PipelineDemultiplexerStage">
<bean id="preProductionDemux" parent="mda.PipelineDemultiplexerStage">
<property name="pipelineAndSelectionStrategies">
<list>
<bean class="net.shibboleth.utilities.java.support.collection.Pair">
Expand Down

0 comments on commit a6e9ecd

Please sign in to comment.