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

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

Christophe Willemsen created CAMEL-15310:
--------------------------------------------

             Summary: 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.4.1, 3.1.0
            Reporter: Christophe Willemsen


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)