Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Suppress WARN AMQ212053: CompletionListener/SendAcknowledgementHandler
Browse files Browse the repository at this point in the history
used with confirmationWindowSize=-1...
  • Loading branch information
ppalaga committed Jan 19, 2016
1 parent 7551853 commit 89da59c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions dist/src/main/resources/standalone.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,15 @@
</xsl:copy>
</xsl:template>

<!-- A temporary fix to avoid WARN AMQ212053: CompletionListener/SendAcknowledgementHandler used with confirmationWindowSize=-1. ...
This can be removed with the Accounts version comming after 2.0.11.Final -->
<xsl:template match="//*[local-name()='subsystem']/*[local-name()='server' and @name='default']/*[local-name()='connection-factory' and @name='InVmConnectionFactory']">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
<xsl:attribute name="confirmation-window-size">10024</xsl:attribute>
</xsl:copy>
</xsl:template>

<!-- copy everything else as-is -->
<xsl:template match="node()|@*">
<xsl:copy>
Expand Down

0 comments on commit 89da59c

Please sign in to comment.