-
Bug
-
Resolution: Won't Do
-
Major
-
JDG 7.0.0 ER5
-
None
The async child element of singleFile element is not parsed completely.
The flushLockTimeout and shutdownTimeout attributes are not parsed and are not available in generated xml.
The following xml:
<infinispan> <namedCache name="withFileStore"> <persistence passivation="false"> <!-- We can have multiple cache stores, which get chained --> <singleFile preload="true" fetchPersistentState="true" ignoreModifications="true" purgeOnStartup="true" location="/tmp/FileCacheStore-Location" > <async enabled="true" flushLockTimeout="15000" threadPoolSize="5" modificationQueueSize="700" shutdownTimeout="1212121"/> <singleton enabled="true" pushStateWhenCoordinator="true" pushStateTimeout="20000" /> </singleFile> </persistence> </namedCache> </infinispan>
is parsed to:
<infinispan> <threads/> <cache-container name="DefaultCacheManager"> <jmx/> <local-cache name="withFileStore"> <transaction mode="NONE"/> <persistence passivation="false"> <file-store fetch-state="true" purge="true" read-only="true" preload="true" path="/tmp/FileCacheStore-Location" singleton="true"> <write-behind modification-queue-size="700" thread-pool-size="5"/> </file-store> </persistence> </local-cache> </cache-container></infinispan>
- is blocked by
-
ISPN-6654 infinispan-config-[89]*.xsd should remove some write-behind attributes
- Closed