Skip to content

Commit

Permalink
Better error message when CmdSubSystem is not found
Browse files Browse the repository at this point in the history
  • Loading branch information
samuell committed Sep 12, 2013
1 parent e384ca1 commit f07d964
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -332,7 +332,7 @@ public String execRemoteCommand(String command) {
} else {
IRemoteCmdSubSystem cmdss = RemoteCommandHelpers.getCmdSubSystem(hpcHost); // It is here that it breaks!
if (cmdss == null) {
errMsg = "Could not find CmdSubSystem in RemoteCommandHelpers.getCmdSubSystem(hpcHost)!";
errMsg = "Could not find CmdSubSystem in RemoteCommandHelpers.getCmdSubSystem(hpcHost), where hpcHost is " + hpcHost + "!";
log.error(errMsg);
return errMsg;
}
Expand Down

0 comments on commit f07d964

Please sign in to comment.