Problem with multiple EHCache connections

Hello,

when I define multiple EHCache connections in my Application.cfc like this:

this.cache.connections[“MonitorInnovation”] = {
class: ‘org.lucee.extension.cache.eh.EHCache’
, bundleName: ‘ehcache.extension’
, bundleVersion: ‘2.10.0.16’
, storage: false
};

this.cache.connections[“MonitorPrograms”] = {
class: ‘org.lucee.extension.cache.eh.EHCache’
, bundleName: ‘ehcache.extension’
, bundleVersion: ‘2.10.0.16’
, storage: false
};

Code hier eingeben…

it recognizes only the first entry, so that I can put cache entries into
MonitorInnovation, but not into MonitorPrograms.
When I try to use MonitorPrograms, it says, that there is no cache with
name MonitorPrograms defined.

Can anybody help?