1
0
Fork 0
mirror of https://github.com/Luzifer/mondash.git synced 2024-12-22 20:11:18 +00:00

Change hard-coded EUWest to USEast

In the future this should be read as an environment variable
This commit is contained in:
Zain Hoda 2015-02-22 14:29:48 -05:00
parent 6a9958088b
commit 84297ff0a6

View file

@ -30,7 +30,7 @@ func main() {
if err != nil {
log.Fatal(err)
}
s3Conn := s3.New(awsAuth, aws.EUWest)
s3Conn := s3.New(awsAuth, aws.USEast)
s3Storage = s3Conn.Bucket(os.Getenv("S3Bucket"))
m := martini.Classic()