From 28d48b87ad41153ba3d53e75258e2bbbaaa0ab44 Mon Sep 17 00:00:00 2001 From: Dariusz Luksza Date: Wed, 16 May 2012 07:55:03 +0200 Subject: [PATCH] Don't swallow JSchException "Auth fail" exception "Auth fail" exception was swallowed during retrying, this leads to "Session down" exception during clone operation with invalid SSH keys. Bug: 336795 Change-Id: Id8d9e83b10f4f2a01e0cf89819190bb23a04a2b9 Signed-off-by: Dariusz Luksza --- .../org/eclipse/jgit/transport/JschConfigSessionFactory.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/JschConfigSessionFactory.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/JschConfigSessionFactory.java index e663cb03f..917ad531b 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/JschConfigSessionFactory.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/JschConfigSessionFactory.java @@ -120,7 +120,8 @@ public abstract class JschConfigSessionFactory extends SshSessionFactory { // if authentication failed maybe credentials changed at the // remote end therefore reset credentials and retry if (credentialsProvider != null && e.getCause() == null - && e.getMessage().equals("Auth fail")) { + && e.getMessage().equals("Auth fail") + && retries < 3) { credentialsProvider.reset(uri); session = createSession(credentialsProvider, fs, user, pass, host, port, hc);