Fixed
Details
Assignee
Michael OffnerMichael OffnerReporter
Pothys - MitrahSoftPothys - MitrahSoftPriority
NewFix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Pothys - MitrahSoft
Pothys - MitrahSoftPriority
Fix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Created 20 July 2021 at 14:02
Updated 5 January 2022 at 15:26
Resolved 2 August 2021 at 21:18
Try to create a component object using relative path inside the cfthread fails in lucee and throws error like invalid component definition, can't find component [ CFC.test ]. Seems the regression starts from 5.3.8.12-SNAPSHOT onwards. Fix for the ticket https://luceeserver.atlassian.net/browse/LDEV-2903#icft=LDEV-2903 causes this issue.
https://github.com/lucee/Lucee/commit/9a27b610333a640acbb230d1d6e5738a71d94e99
This one fails
<cfscript> cfthread( action="run", name="TEST") { testCFC = new CFC.test(); thread.res = testCFC.run("test"); } writeDump(cfthread); <cfscript>
Using full path from root works
<cfscript> cfthread( action="run", name="TESTed") { testCFC = new path.from.root.CFC.test(); thread.res = testCFC.run("test"); } writeDump(cfthread); <cfscript>
Stacktrace
"ERROR","cfthread-0","07/20/2021","19:06:09","cfthread-0","invalid component definition, can't find component [CFC.test];invalid component definition, can't find component [CFC.test];lucee.runtime.exp.ExpressionException: invalid component definition, can't find component [CFC.test] at lucee.runtime.component.ComponentLoader._search(ComponentLoader.java:125) at lucee.runtime.component.ComponentLoader.searchComponent(ComponentLoader.java:79) at lucee.runtime.PageContextImpl.loadComponent(PageContextImpl.java:3241) at lucee.runtime.functions.other.CreateObject.doComponent(CreateObject.java:148) at lucee.runtime.functions.other._CreateComponent.call(_CreateComponent.java:42) at test.testcase.test_cfm$cf.threadCall(/test/testcase/test.cfm:4) at lucee.runtime.thread.ChildThreadImpl.execute(ChildThreadImpl.java:203) at lucee.runtime.thread.ChildThreadImpl.run(ChildThreadImpl.java:145)