Jay Prall

Results 22 comments of Jay Prall

Here is a way to workaround the issue: 1) inject sendSesMail ``` def sendSesMail ``` 2) use sendSesMail.send ``` def mailId = sendSesMail.send {...} ```

What version of grails are you using? 3.x is on master and the old versions are in branches. https://github.com/grails-aws/grails-aws/tree/grails-2.3.x

Can you provide an example? I don't understand this issue enough to implement a fix.

This is because Frankfurt is the wrong bucketLocation. You want to use: http://jets3t.s3.amazonaws.com/api/org/jets3t/service/model/S3Bucket.html#LOCATION_EU_FRANKFURT ``` public static final java.lang.String LOCATION_EU_FRANKFURT "eu-central-1" ``` So if you just replace "Frankfurt" with "eu-central-1" it...

Maybe we should update the documentation to be more clear? The `bucketLocation` parameter could be named as `region`.

Can you provide a stacktrace and your configuration?

I disagree. A stacktrace will provide information that will show the line of code with the problem. Please provide one or this issue will be closed. v1.9.13.4 works fine for...

I was unable to reproduce this issue using the latest version of the plugin (1.6.7.1) and Grails 2.2.4 There is now a grails-aws-example project and a branch for this specific...

FYI, in the working example. the debug code still does not include s3upload as a method name. ``` println file.inputStream.metaClass.methods*.name.sort().unique() ``` outputs: ``` [available, close, equals, getChannel, getClass, getFD, hashCode,...