Skip to content

Commit

Permalink
fixed grails-aws#37 - missed one...
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbrookes committed Mar 16, 2014
1 parent 530556f commit 72a6b04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/groovy/grails/plugin/aws/meta/AwsPluginSupport.groovy
Expand Up @@ -35,15 +35,15 @@ class AwsPluginSupport {
properties = propertiesVal
}

def fromVal, catchall
( fromVal, catchall ) =
def fromVal, catchallVal
( fromVal, catchallVal ) =
[ "ses.from", "ses.catchall" ].collect { read( it ) ?: null }

sendSesMail(SendSesMail) { bean ->
bean.singleton = false
credentialsHolder = ref('credentialsHolder')
from = fromVal
catchall = catchall
catchall = catchallVal
}

def aclVal, bucketVal, bucketLocationVal
Expand Down

0 comments on commit 72a6b04

Please sign in to comment.