try {
waitLonger = Integer.parseInt(System.getProperty("timeout.factor"));
} catch (NumberFormatException exception) {
log.warn("Could not parse timeout.factor, defaulting to no timeout.");
}
return new Timeout(waitLonger * defaultTimeoutSeconds() * 1000);
}