Skip to content

Commit

Permalink
Rename a bean to describe its function more closely.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed May 9, 2016
1 parent 612e023 commit 8d04b20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mdx/common-beans.xml
Original file line number Diff line number Diff line change
Expand Up @@ -577,12 +577,12 @@
</bean>

<!--
errorAnnouncer
warningAndErrorAnnouncer
A pipeline stage that logs any errors and warnings present,
but takes no action on them.
-->
<bean id="errorAnnouncer" parent="stage_parent"
<bean id="warningAndErrorAnnouncer" parent="stage_parent"
class="net.shibboleth.metadata.pipeline.StatusMetadataLoggingStage">
<property name="identificationStrategy" ref="identificationStrategy"/>
<property name="selectionRequirements">
Expand Down Expand Up @@ -632,7 +632,7 @@
<bean id="errorAnnouncingFilter" parent="CompositeStage">
<property name="composedStages">
<list>
<ref bean="errorAnnouncer"/>
<ref bean="warningAndErrorAnnouncer"/>
<ref bean="errorRemover"/>
</list>
</property>
Expand All @@ -647,7 +647,7 @@
<bean id="errorTerminatingFilter" parent="CompositeStage">
<property name="composedStages">
<list>
<ref bean="errorAnnouncer"/>
<ref bean="warningAndErrorAnnouncer"/>
<ref bean="errorTerminator"/>
</list>
</property>
Expand Down

0 comments on commit 8d04b20

Please sign in to comment.