Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.

[Sprint: 49] XD-2817 - gemfire modules close client cache on undeploy #1585

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/common/gemfire-sink.groovy
Expand Up @@ -5,6 +5,6 @@ beans {
def xdhome = environment.getProperty('XD_HOME')
importBeans "file:${xdhome}/modules/common/gemfire-connection.groovy"

gfe.'client-cache'(id: 'client-cache', 'use-bean-factory-locator': false, close: false)
gfe.'client-cache'(id: 'client-cache', 'use-bean-factory-locator': false)
gfe.'client-region'(id: 'region', 'cache-ref': 'client-cache', name: '${regionName}', 'data-policy': 'EMPTY')
}
2 changes: 1 addition & 1 deletion modules/common/gemfire-source.groovy
@@ -1,6 +1,6 @@
beans {
xmlns([gfe: 'http://www.springframework.org/schema/gemfire', si: 'http://www.springframework.org/schema/integration'])
gfe.'client-cache'(id: 'client-cache', 'use-bean-factory-locator': false, close: false)
gfe.'client-cache'(id: 'client-cache', 'use-bean-factory-locator': false)

subscriptionEnabled Boolean, true
def xdhome = environment.getProperty('XD_HOME')
Expand Down