Continue mounting if reg.exe command fails. Issue #267

This commit is contained in:
Markus Kreusch
2016-08-10 13:57:23 +02:00
parent e8db836eff
commit 94a5bf7596

View File

@@ -133,6 +133,8 @@ final class WindowsWebDavMounter implements WebDavMounterStrategy {
String addStdErr = IOUtils.toString(addCmd.getErrorStream(), StandardCharsets.UTF_8);
throw new CommandFailedException(addStdErr);
}
} catch (IOException e) {
LOG.info("Failed to add proxy overrides", e);
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
InterruptedIOException ioException = new InterruptedIOException();