This commit is contained in:
jaypipes@gmail.com 2011-07-29 14:45:36 -04:00
parent ba7cd33d47
commit 9b953715df
1 changed files with 8 additions and 0 deletions

View File

@ -108,6 +108,14 @@ class TestS3(functional.FunctionalTest):
self.inited = True
super(TestS3, self).setUp()
return
except TypeError, e:
# This hack is necessary because of a bug in boto 1.9b:
# http://code.google.com/p/boto/issues/detail?id=540
print ("Failed to connect to S3 with credentials. "
"Got error: %s" % e)
self.inited = True
super(TestS3, self).setUp()
return
self.s3_conn = s3_conn