-
Bug
-
Resolution: Unresolved
-
Minor
-
None
ExecRemoteAgentFactory.isSupported() calls ssh-agent -k. If SSH_AGENT_PID is set and pointing to a running ssh-agent, the isSupported test will terminate it.
In ExecRemoteAgentFactory.java#L59 , it could be fixed by tweaking the environment with envs()
launcher.launch().cmds("ssh-agent", "-k").envs("SSH_AGENT_PID=")...