long delayInMillis = this.retryDelay * 1000;
RetryableRequest<SshCommandResult> sshCommand = new RetryableRequest<SshCommandResult>(
new SshCommandRequester(publicIp, this.sshPort, this.sshUser,
this.sshKeyPath, this.command), new RetrySshCommand(
this.maxRetries, delayInMillis), this.taskName);
SshCommandResult response = sshCommand.call();
return response;
}