Fix compile breakage as a result of updating aws import

This commit is contained in:
Rafael Weinstein
2015-08-04 15:44:40 -07:00
parent 029909a9f2
commit ee9a9ae03d
+2 -2
View File
@@ -52,8 +52,8 @@ func NewAWSStore(bucket, table, region, key, secret string) AWSStore {
return AWSStore{
bucket,
table,
s3.New(&aws.Config{Region: region, Credentials: creds}),
dynamodb.New(&aws.Config{Region: region, Credentials: creds}),
s3.New(&aws.Config{Region: &region, Credentials: creds}),
dynamodb.New(&aws.Config{Region: &region, Credentials: creds}),
}
}