Skip to content

Commit

Permalink
ACS-8120: fix Spring config
Browse files Browse the repository at this point in the history
  • Loading branch information
krdabrowski committed Jun 20, 2024
1 parent 4ba36e4 commit 933c3e8
Showing 1 changed file with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,19 @@
</map>
</property>
<property name="retry">
<bean class="org.alfresco.hxi_connector.common.config.properties.Retry"/>
<bean class="org.alfresco.hxi_connector.common.config.properties.Retry">
<property name="reasons">
<list>
<value>org.alfresco.hxi_connector.common.exception.EndpointServerErrorException</value>
<value>java.net.UnknownHostException</value>
<value>java.net.MalformedURLException</value>
<value>com.fasterxml.jackson.core.io.JsonEOFException</value>
<value>com.fasterxml.jackson.databind.exc.MismatchedInputException</value>
<value>org.apache.hc.core5.http.NoHttpResponseException</value>
<value>org.apache.hc.core5.http.MalformedChunkCodingException</value>
</list>
</property>
</bean>
</property>
</bean>

Expand Down

0 comments on commit 933c3e8

Please sign in to comment.