Fallback with full timeout

This commit is contained in:
M66B 2020-03-14 18:44:59 +01:00
parent ed701f5672
commit b3b320a4ef
1 changed files with 0 additions and 6 deletions

View File

@ -431,18 +431,12 @@ public class EmailService implements AutoCloseable {
} }
} }
String prop = "mail." + protocol + ".connectiontimeout";
String timeout = properties.getProperty(prop);
try { try {
EntityLog.log(context, "Falling back to " + iaddr.getHostAddress()); EntityLog.log(context, "Falling back to " + iaddr.getHostAddress());
properties.put(prop, Integer.toString(DEFAULT_CONNECT_TIMEOUT / 2));
_connect(iaddr.getHostAddress(), port, user, password, factory); _connect(iaddr.getHostAddress(), port, user, password, factory);
return; return;
} catch (MessagingException ex1) { } catch (MessagingException ex1) {
EntityLog.log(context, "Fallback ex=" + ex.getMessage()); EntityLog.log(context, "Fallback ex=" + ex.getMessage());
} finally {
if (timeout != null)
properties.put(prop, timeout);
} }
} }
} catch (Throwable ex1) { } catch (Throwable ex1) {