开发者

Jsch error return codes not consistent

开发者 https://www.devze.com 2023-01-05 03:34 出处:网络
I am using the nice http://www.jcraft.com/jsch/ library - however when I run some commands, I开发者_如何学Python see that jsch returns a getExitStatus of -1, from time to time, even though the script

I am using the nice http://www.jcraft.com/jsch/ library - however when I run some commands, I开发者_如何学Python see that jsch returns a getExitStatus of -1, from time to time, even though the script ran fine (when I run it by hand it is consistently a successful 0 exit code). Any ideas?

(seems to happen to a wide variety of commands)


I gave up on Jsch - and its incredibly unhelpful API and switched to:

http://www.cleondris.ch/opensource/ssh2/

(Ganymede SSH2). I do a LOT with ssh in the JVM and over months of 24 hour usage ganymede has proven far more reliable. And more pleasant. My main remaining gripe is around being apparently unable to set timeouts for SCP.


I suffered the same issue and then came across this in the Jsch changelog (http://www.jcraft.com/jsch/ChangeLog):

  • feature: added 'Channel.isClosed()'. Channel.getExitStatus() should be invoked after Channel.isClosed()==true.

So knocked this up: Needs to be called before channel.disconnect(), else still get -1 issue:

private static void waitForChannelClosure(ChannelExec ce, long maxwaitMs) {

    log.info("waitForChannelClosure >>>");
    final long until = System.currentTimeMillis() + maxwaitMs;

    try {
        while (!ce.isClosed() && System.currentTimeMillis() < until) { 
            log.info("SFTP channel not closed .. waiting");
            Thread.sleep(250);
        }

    } catch (InterruptedException e) {
        throw new RuntimeException("Interrupted", e);
    }

    if (!ce.isClosed()) {
        throw new RuntimeException("Channel not closed in timely manner!");
    }

};
0

精彩评论

暂无评论...
验证码 换一张
取 消