Skip to content

Commit 833e2a3

Browse files
saurabh-ossclaude
andcommitted
fix: correct import for ControllerToAgentFileCallable (jenkins.agents package)
The class lives in jenkins.agents.ControllerToAgentFileCallable, not jenkins.ControllerToAgentFileCallable. The wrong package caused a NoClassDefFoundError at runtime, which silently prevented ForgeAIStep from registering as a pipeline DSL step. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 0724252 commit 833e2a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/io/forgeai/jenkins/steps/DirectoryTreeCallable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package io.forgeai.jenkins.steps;
22

33
import hudson.remoting.VirtualChannel;
4-
import jenkins.ControllerToAgentFileCallable;
4+
import jenkins.agents.ControllerToAgentFileCallable;
55

66
import java.io.File;
77
import java.io.IOException;

0 commit comments

Comments
 (0)