Hello All,
I have been able to narrow down this issue to below -
1) I enabled client to server compression configuration on Jsch by setting
compression=2 as an option on camel route.
2) With this, Jsch sets client to server compression configuration as - JSCH
-> kex: client: [email protected]
Looking at the code in SftpOperations.java in createSession()
// compression
if (sftpConfig.getCompression() > 0) {
LOG.debug("Using compression: {}", sftpConfig.getCompression());
session.setConfig("compression.s2c", "[email protected], zlib,
none");