Calling component using relative path in thread fails

Description

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)

Environment

None

Attachments

3
  • 02 Aug 2021, 03:59 pm
  • 02 Aug 2021, 01:01 pm
  • 02 Aug 2021, 12:50 pm

Activity

Show:

Pothys - MitrahSoft 5 January 2022 at 15:26

The same issue happened with a long-running thread and throws an error like invalid component definition, can't find component [ CFC.test ]. I created a ticket for this issue

https://luceeserver.atlassian.net/browse/LDEV-3802

Zac Spitzer 2 August 2021 at 21:18

works for me

Michael Offner 2 August 2021 at 18:50

i have created a test case

Zac Spitzer 2 August 2021 at 18:06

Ok, I'll test when I get home from dinner, merge the test case too?

Michael Offner 2 August 2021 at 18:05

Fixed

Details

Assignee

Reporter

Priority

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

Affects versions

Created 20 July 2021 at 14:02
Updated 5 January 2022 at 15:26
Resolved 2 August 2021 at 21:18

Flag notifications