Skip to content

Commit

Permalink
more log
Browse files Browse the repository at this point in the history
  • Loading branch information
diegolovison committed Jan 3, 2025
1 parent 99ed82e commit 0d22a1b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/main/java/io/hyperfoil/tools/qdup/Run.java
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,9 @@ private boolean queueRunScripts(){
isTrace(name)
);
shell.setName(name);
if (shell.isReady()) {
boolean ready = shell.isReady();
stateLogger.info("shell name={} is {}", name, ready);
if (ready) {
//shell.shSync(setupCommand); //moved into getShell
//session.setDelay(SuffixStream.NO_DELAY);
timer.start("context:" + host.toString());
Expand All @@ -881,7 +883,7 @@ private boolean queueRunScripts(){
timer.start("waiting for start");
return rtrn;
} else {
logger.error("run failed to connect "+host.getSafeString()
stateLogger.error("run failed to connect "+host.getSafeString()
+(host.hasPassword() ?
", verify ssh works with the provided username and password" :
", verify password-less ssh works with the selected keys"
Expand All @@ -899,6 +901,7 @@ private boolean queueRunScripts(){
}
}
}
stateLogger.info("ok=true");
boolean ok = true;

if(!connectSessions.isEmpty()) {
Expand Down

0 comments on commit 0d22a1b

Please sign in to comment.