[infinispan-issues] [JBoss JIRA] (ISPN-1283) CloudCacheStore incorrectly handles JClouds' cloudServiceLocation "EU"

Mircea Markus (JIRA) jira-events at lists.jboss.org
Mon Jul 1 07:07:21 EDT 2013


     [ https://issues.jboss.org/browse/ISPN-1283?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mircea Markus updated ISPN-1283:
--------------------------------

    Priority: Minor  (was: Major)

    
> CloudCacheStore incorrectly handles JClouds' cloudServiceLocation "EU"
> ----------------------------------------------------------------------
>
>                 Key: ISPN-1283
>                 URL: https://issues.jboss.org/browse/ISPN-1283
>             Project: Infinispan
>          Issue Type: Bug
>          Components: Loaders and Stores
>    Affects Versions: 4.2.1.FINAL, 5.0.0.CR8
>            Reporter: Gernot Bauer
>            Assignee: Manik Surtani
>            Priority: Minor
>
> Infinispan's CloudCacheStore incorrectly handles the JClouds' cloudServiceLocation for Amazon S3 Ireland:
> <property name="cloudServiceLocation" value="EU" />
> "EU" is defined as uppercase in JClouds. This cannot be used with Infinispan because the parameter is converted to lower case in CloudCacheStore.java:183.
> A possible fix that should not break existing code would be to change CloudCacheStore.java:180 from
>                        return input.getId();
> to
>                        return input.getId().trim().toLowerCase();

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the infinispan-issues mailing list