You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Andrea Cosentino (Jira)" <ji...@apache.org> on 2020/07/21 04:45:00 UTC

[jira] [Updated] (CAMEL-15310) AWS S3 - Support for more than 1 client in the registry

     [ https://issues.apache.org/jira/browse/CAMEL-15310?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrea Cosentino updated CAMEL-15310:
-------------------------------------
    Fix Version/s: 3.5.0

> AWS S3 - Support for more than 1 client in the registry
> -------------------------------------------------------
>
>                 Key: CAMEL-15310
>                 URL: https://issues.apache.org/jira/browse/CAMEL-15310
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-aws-s3
>    Affects Versions: 3.1.0, 3.4.1
>            Reporter: Christophe Willemsen
>            Assignee: Andrea Cosentino
>            Priority: Minor
>             Fix For: 3.5.0
>
>
> The `amazonS3Client` query parameter takes the key of the bean in the registry as argument, however that key is not used.
>  
> Actually, today the component supports *ONLY* having 1 bean of type AmazonS3 in the registry, the following method in the S3Component shows it : 
>  
>  
> {code:java}
> private void checkAndSetRegistryClient(S3Configuration configuration) {
>     Set<AmazonS3> clients = this.getCamelContext().getRegistry().findByType(AmazonS3.class);
>     if (clients.size() == 1) {
>         configuration.setAmazonS3Client((AmazonS3)clients.stream().findFirst().get());
>     }
> }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)