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/12/11 10:46:00 UTC

[jira] [Created] (CAMEL-12991) SftpEndpoint does not allow to use custom process strategy

Seweryn Walendzik created CAMEL-12991:
-----------------------------------------

             Summary: SftpEndpoint does not allow to use custom process strategy
                 Key: CAMEL-12991
                 URL: https://issues.apache.org/jira/browse/CAMEL-12991
             Project: Camel
          Issue Type: Bug
          Components: camel-core
    Affects Versions: 2.23.0
            Reporter: Seweryn Walendzik
             Fix For: 2.23.1


SftpEndpoint always create generic file strategy even processStrategy object is set in enpoint
{code:java}
@Override
protected RemoteFileConsumer<SftpRemoteFile> buildConsumer(Processor processor) {
    return new SftpConsumer(this, processor, createRemoteFileOperations(), createGenericFileStrategy());
}{code}
it is working in FileEnpoint
{code:java}
protected FileConsumer newFileConsumer(Processor processor, GenericFileOperations<File> operations) {
    return new FileConsumer(this, processor, operations, processStrategy != null ? processStrategy : createGenericFileStrategy());
}{code}



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