more test fixes for INT-2235

This commit is contained in:
Mark Fisher
2011-11-22 15:02:15 -05:00
parent 123ba64d2b
commit a4cee32566
2 changed files with 5 additions and 5 deletions

View File

@@ -6,9 +6,9 @@
http://www.springframework.org/schema/integration http://www.springframework.org/schema/integration/spring-integration-2.1.xsd">
<int:resource-inbound-channel-adapter id="resourceAdapterDefault" channel="resultChannel"
pattern="file:#{T(java.lang.System).getProperty('java.io.tmpdir') + 'testUsage*'}">
<int:poller fixed-rate="2000"/>
<int:resource-inbound-channel-adapter id="resourceAdapterDefault" channel="resultChannel"
pattern="file:#{T(java.lang.System).getProperty('java.io.tmpdir') + T(java.lang.System).getProperty('file.separator') + 'testUsage*'}">
<int:poller fixed-rate="1000"/>
</int:resource-inbound-channel-adapter>
<int:channel id="resultChannel">

View File

@@ -6,8 +6,8 @@
http://www.springframework.org/schema/integration http://www.springframework.org/schema/integration/spring-integration-2.1.xsd">
<int:resource-inbound-channel-adapter id="resourceAdapterDefault" channel="resultChannel"
pattern="file:#{T(java.lang.System).getProperty('java.io.tmpdir') + '/testUsage*'}"
<int:resource-inbound-channel-adapter id="resourceAdapterDefault" channel="resultChannel"
pattern="file:#{T(java.lang.System).getProperty('java.io.tmpdir') + T(java.lang.System).getProperty('file.separator') + 'testUsage*'}"
filter="customFilter" auto-startup="false">
<int:poller fixed-rate="500"/>
</int:resource-inbound-channel-adapter>