Skip to content

Commit 9776f8e

Browse files
committed
ExecRemoteAgentStarter.java updated to catch up with API change
...namely jenkinsci/remoting@944fb8a
1 parent 5f7dd90 commit 9776f8e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/com/cloudbees/jenkins/plugins/sshagent/exec/ExecRemoteAgentStarter.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,16 @@
2424

2525
package com.cloudbees.jenkins.plugins.sshagent.exec;
2626

27+
import jenkins.security.MasterToSlaveCallable;
28+
2729
import com.cloudbees.jenkins.plugins.sshagent.RemoteAgent;
2830
import hudson.model.TaskListener;
29-
import hudson.remoting.Callable;
3031
import hudson.remoting.Channel;
3132

3233
/**
3334
* Callable to start the remote agent.
3435
*/
35-
public class ExecRemoteAgentStarter implements Callable<RemoteAgent, Throwable> {
36+
public class ExecRemoteAgentStarter extends MasterToSlaveCallable<RemoteAgent, Throwable> {
3637
/**
3738
* Need to pass this through.
3839
*/

0 commit comments

Comments
 (0)