Removed the disk-store reference in the subscription-config subelement of the GemFire Cache Server bean definition since the Disk Store reference by name is invalid (referring to the Disk Store disk directory location and not the logical name of a valid Disk Store, see SGF-217 for further details). This change should also fix the nightly build.
This commit is contained in:
@@ -15,13 +15,10 @@
|
||||
<bean id="bean1" class="org.springframework.data.gemfire.Init"/>
|
||||
|
||||
<!-- Advanced example depicting various cache server configuration options -->
|
||||
<gfe:cache-server id="advanced-config" auto-startup="true"
|
||||
bind-address="localhost" port="${gfe.port.6}" host-name-for-clients="localhost"
|
||||
load-poll-interval="2000" max-connections="22" max-threads="16"
|
||||
max-message-count="1000" max-time-between-pings="30000"
|
||||
groups="test-server">
|
||||
|
||||
<gfe:subscription-config eviction-type="ENTRY" capacity="1000" disk-store="file://${java.io.tmpdir}"/>
|
||||
<gfe:cache-server id="advanced-config" auto-startup="true" bind-address="localhost" port="${gfe.port.6}"
|
||||
host-name-for-clients="localhost" groups="test-server" load-poll-interval="2000"
|
||||
max-connections="22" max-threads="16" max-message-count="1000" max-time-between-pings="30000">
|
||||
<gfe:subscription-config eviction-type="ENTRY" capacity="1000"/>
|
||||
</gfe:cache-server>
|
||||
|
||||
<bean id="bean2" class="org.springframework.data.gemfire.Init"/>
|
||||
@@ -29,4 +26,4 @@
|
||||
<context:property-placeholder location="classpath:port.properties" />
|
||||
|
||||
|
||||
</beans>
|
||||
</beans>
|
||||
|
||||
Reference in New Issue
Block a user