Changeset 279

Show
Ignore:
Timestamp:
12/19/06 20:59:54 (2 years ago)
Author:
scorfield
Message:

Fixes #138 by extending timeout on creating parsed file from 30 to 300
(so it won't time out waiting for an exclusive lock on compiling a request).
At least, I *think* this is the fix for the symptoms reported.

Location:
framework/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • framework/trunk/fuseboxApplication.cfc

    r278 r279  
    9393                                        hint="I am the myFusebox data structure." /> 
    9494                 
    95                 <!--- partial fix for ticket 95 ---> 
     95                <!--- fix ticket 138 ---> 
    9696                <cfset var myVersion = "5.0.1.#REReplace('$LastChangedRevision$','[^0-9]','','all')#" /> 
    9797 
     
    380380                 
    381381                <cfif not fileExists(fullParsedFile) or arguments.myFusebox.parameters.parse> 
    382                         <cflock name="#fullParsedFile#" type="exclusive" timeout="30"> 
     382                        <cflock name="#fullParsedFile#" type="exclusive" timeout="300"> 
    383383                                <cfif not fileExists(fullParsedFile) or arguments.myFusebox.parameters.parse> 
    384384                                        <cfset request.__fusebox.SuppressPlugins = false /> 
  • framework/trunk/myFusebox.cfc

    r278 r279  
    5151<cfcomponent hint="I provide the per-request myFusebox data structure and some convenience methods."> 
    5252        <cfscript> 
    53         // partial fix for ticket 95 
     53        // fix ticket 138 
    5454        this.version.runtime     = "5.0.1.#REReplace('$LastChangedRevision$','[^0-9]','','all')#"; 
    5555