Skip to content

Commit

Permalink
(OrderOfTheBee#149) Fix cache name for caches tool matching
Browse files Browse the repository at this point in the history
  • Loading branch information
AFaust authored and yregaieg committed Jan 2, 2020
1 parent 7ca0794 commit 53e2795
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
</property>
</bean>

<bean name="ootbee-support-tools.propertyBackedBeansPersister.sharedCache" factory-bean="cacheFactory" factory-method="createCache">
<bean name="propertyBackedBeansPersisterSharedCache" factory-bean="cacheFactory" factory-method="createCache">
<constructor-arg value="cache.propertyBackedBeansPersisterSharedCache" />
</bean>

<bean name="ootbee-support-tools.propertyBackedBeansPersister.txnCache" class="org.alfresco.repo.cache.TransactionalCache">
<property name="sharedCache" ref="ootbee-support-tools.propertyBackedBeansPersister.sharedCache" />
<property name="name" value="ootbee-support-tools.propertyBackedBeansPersister.txnCache" />
<bean name="propertyBackedBeansPersisterSharedCache.txnCache" class="org.alfresco.repo.cache.TransactionalCache">
<property name="sharedCache" ref="propertyBackedBeansPersisterSharedCache" />
<property name="name" value="propertyBackedBeansPersisterSharedCache.txnCache" />
<property name="maxCacheSize" value="${cache.propertyBackedBeansPersisterSharedCache.tx.maxItems}" />
<property name="mutable" value="true" />
<property name="disableSharedCache" value="${system.cache.disableMutableSharedCaches}" />
Expand All @@ -33,7 +33,7 @@
<property name="descriptorService" ref="DescriptorService" />
<property name="transactionService" ref="TransactionService" />
<property name="attributeService" ref="AttributeService" />
<property name="propertyBackedBeanPropertiesCache" ref="ootbee-support-tools.propertyBackedBeansPersister.txnCache" />
<property name="propertyBackedBeanPropertiesCache" ref="propertyBackedBeansPersisterSharedCache.txnCache" />

<property name="enabled" value="${ootbee-support-tools.propertyBackedBeanPersister.enabled}" />
<property name="useLegacyJmxKeysForRead"
Expand Down

0 comments on commit 53e2795

Please sign in to comment.