diff --git a/system/services/presideObjects/PresideObjectService.cfc b/system/services/presideObjects/PresideObjectService.cfc index ca9d1c2f0b..e9040fc5ee 100644 --- a/system/services/presideObjects/PresideObjectService.cfc +++ b/system/services/presideObjects/PresideObjectService.cfc @@ -3289,7 +3289,9 @@ component displayName="Preside Object Service" { } } - cachebox.createCache( argumentCollection=newConfig ); + try { + cachebox.createCache( argumentCollection=newConfig ); + } catch ( "CacheFactory.CacheExistsException" e ) {} return cachebox.getCache( newConfig.name ); }