You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Seweryn Walendzik (JIRA)" <ji...@apache.org> on 2018/09/07 07:24:00 UTC

[jira] [Created] (CAMEL-12786) Option readLockLoggingLevel not working for SFTP changed strategy

Seweryn Walendzik created CAMEL-12786:
-----------------------------------------

             Summary: Option readLockLoggingLevel not working for SFTP changed strategy
                 Key: CAMEL-12786
                 URL: https://issues.apache.org/jira/browse/CAMEL-12786
             Project: Camel
          Issue Type: Bug
          Components: camel-ftp
    Affects Versions: 2.22.0, 2.19.0
            Reporter: Seweryn Walendzik


method setReadLockLoggingLevel is not invoked in class SftpProcessStrategyFactory so logging level is always set to default (WARN)

 
{code:java}
else if ("changed".equals(readLock)) {
    SftpChangedExclusiveReadLockStrategy readLockStrategy = new SftpChangedExclusiveReadLockStrategy();
    Long timeout = (Long) params.get("readLockTimeout");
    if (timeout != null) {
        readLockStrategy.setTimeout(timeout);
    }
    Long checkInterval = (Long) params.get("readLockCheckInterval");
    if (checkInterval != null) {
        readLockStrategy.setCheckInterval(checkInterval);
    }
    Long minLength = (Long) params.get("readLockMinLength");
    if (minLength != null) {
        readLockStrategy.setMinLength(minLength);
    }
    Long minAge = (Long) params.get("readLockMinAge");
    if (null != minAge) {
        readLockStrategy.setMinAge(minAge);
    }
    Boolean fastExistsCheck = (Boolean) params.get("fastExistsCheck");
    if (fastExistsCheck != null) {
        readLockStrategy.setFastExistsCheck(fastExistsCheck);
    }
    return readLockStrategy;
}{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)