Hi, we have a simple route to get files from ftp server with an error in server address: onException(GenericFileOperationFailedException.class, IOException.class) .process(new FileProtokollErrorProcessor()) .handled(true) .to("direct:error"); from("ftp://unknown-host.vv?password=secret&username=user"). to("direct:work")
we get expected exception, but while connecting through proxy, route is polling for ever: from("ftp://proxy:8021?password=secret&username=user%40unknown-host.vv") .to("direct:work") WARNING: Cannot connect/login to: ftp://u...@unknown-host.vv@proxy:8021. Will skip this poll. I thought it is related with: https://issues.apache.org/jira/browse/CAMEL-6551 updating to 2.11.2 does not really help, only warn messages are gone. The Exceptionhandler is never called an route tries polling, am I missing something or is it a bug? Regards Robin