Changeset 1729

Show
Ignore:
Timestamp:
08/24/08 14:06:34 (5 months ago)
Author:
lmajano
Message:

Testing of new Deploy interceptor for cluster reloadings.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • coldbox/trunk/CodeDepot/interceptors/com/ortussolutions/deployment/Deploy.cfc

    r1728 r1729  
    5353                         
    5454                        /* Check for a cleanupCommandObject */ 
    55                         if( propertyExists('cleanupCommandObject') ){ 
     55                        if( propertyExists('deployCommandObject') ){ 
    5656                                try{ 
    5757                                        /* Create it */ 
    58                                         instance.cleanupCommandObject = createObject("component",getProperty('cleanupCommandObject')).init(controller); 
     58                                        instance.deployCommandObject = createObject("component",getProperty('deployCommandObject')).init(controller); 
    5959                                } 
    6060                                catch(Any e){ 
     
    9898                                                         
    9999                                                        /* cleanup command */ 
    100                                                         if( propertyExists('cleanupCommandObject') ){ 
    101                                                                 instance.cleanupCommandObject.execute(); 
     100                                                        if( propertyExists('deployCommandObject') ){ 
     101                                                                instance.deployCommandObject.execute(); 
    102102                                                        } 
    103103                                                         
  • coldbox/trunk/testharness/config/coldbox.xml.cfm

    r1728 r1729  
    127127                <Interceptor class="coldbox.CodeDepot.interceptors.com.ortussolutions.deployment.Deploy"> 
    128128                        <Property name="tagFile">config/_deploy.tag</Property> 
    129                         <Property name="cleanupCommandObject">coldbox.testharness.model.DeployCleanup</Property> 
     129                        <Property name="deployCommandObject">coldbox.testharness.model.DeployCleanup</Property> 
    130130                </Interceptor> 
    131131                <Interceptor class="coldbox.system.interceptors.autowire"> 

Copyright 2006 ColdBox Framework by Luis Majano