INT-3797: Fix SFTP doc for CachingSessionFactory

JIRA: https://jira.spring.io/browse/INT-3797
This commit is contained in:
Artem Bilan
2015-08-14 11:16:37 -04:00
parent 3133782cc5
commit a5e5a7b125

View File

@@ -239,7 +239,7 @@ If you want your Sessions to be cached, simply configure your default Session Fa
<bean id="cachingSessionFactory"
class="org.springframework.integration.file.remote.session.CachingSessionFactory">
<constructor-arg ref="sftpSessionFactory"/>
<property name="sessionCacheSize" value="10"/>
<constructor-arg value="10"/>
<property name="sessionWaitTimeout" value="1000"/>
</bean>
----