tracker issue : CFB-3040941

select a category, or use search below
(searches all categories and all time range)
Title:

Bug 82098:(Watson Migration Closure)I reported this once before and you guys closed it as you said you couldn't duplicate it

| View in Tracker

Status/Resolution/Reason: Closed/Deferred/

Reporter/Name(from Bugbase): Andrew Scott / Andrew Scott (Andrew Scott)

Created: 02/15/2010

Components: Debugger, General

Versions: 3.0

Failure Type: Unspecified

Found In Build/Fixed In Build: 0000 /

Priority/Frequency: Normal / Unknown

Locale/System: English / Platforms All

Vote Count: 0

Problem:

I reported this once before and you guys closed it as you said you couldn't duplicate it. I constantlyThe following code will not work in the line debugger.

<cfloop query="local.stackList">
  <!--- Check the stack against the protocol type --->
  <cfloop list="#local.upgradeList#" index="local.version">

  <!--- Check to see if the upgrade version is greather than the Application version --->
  <cfset local.newVersion = rereplace(local.version, "_",".", "all") />
  <cfset local.object = createObject('component', 'upgrade#local.version#') />
  <cfloop list="#local.object.getProductType()#" index="local.upgradeProtocol">
  
    <cfif stackCompare(local.stackList.stackName, local.upgradeProtocol)>
      <cftry>
        <cfset local.object.upgradeStack(local.stackList.stackName) />
        <cfoutput>Updating #local.stackList.stackName#<br />
        </cfoutput>
        <cfcatch type="database">
          <cfif not cfcatch.message contains "could not be found">
            <cfthrow type='Database' message='Fatal Upgrade Error' />
          </cfif>
        </cfcatch>
      </cftry>
    </cfif>
  </cfloop>
  </cfloop>
</cfloop>

It gets to the second loop and the next line you try to step over will execute all other code and exit the application.This is a serious bug that need to be fixed as quickly as possible.
Method:


Result:

----------------------------- Additional Watson Details -----------------------------

Watson Bug ID:	3040941

External Customer Info:
External Company:  
External Customer Name: Andrew Scott
External Customer Email: 3DEA395D4926D3D0992015B9
External Test Config: 02/15/2010

Attachments:

Comments:

Hope this is going to be fixed in ColdFusion 10
Comment by External U.
27250 | February 24, 2012 10:35:07 PM GMT