Skip to content

Commit

Permalink
fixed JENKINS-15005: fixed config migration issue
Browse files Browse the repository at this point in the history
  • Loading branch information
edmund-wagner committed Sep 3, 2012
1 parent ada65c3 commit d215b69
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/org/jvnet/hudson/plugins/SSHSite.java
Expand Up @@ -179,7 +179,11 @@ private ChannelExec createChannel(PrintStream logger, Session session)
channel.setOutputStream(logger, true);
channel.setExtOutputStream(logger, true);
channel.setInputStream(null);
if(pty == null) {
pty = Boolean.FALSE;
}
channel.setPty(pty);

return channel;
}

Expand Down

0 comments on commit d215b69

Please sign in to comment.