You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
inside of:
# The boto-specific methods.
def bucket_exists(self, bucket_name):
I had to change this:
self.s3.meta.client.head_bucket(Bucket=bucket_name)
to this:
self.s3.meta.get("client", None).head_bucket(Bucket=bucket_name)
to get it to work....
it was throwing error: "dictionary object has no property "client"
I assume I have something wrong but dont' know what.
Can someone tell me why I seem alone in hitting this issue?
The text was updated successfully, but these errors were encountered:
inside of:
# The boto-specific methods.
def bucket_exists(self, bucket_name):
I had to change this:
self.s3.meta.client.head_bucket(Bucket=bucket_name)
to this:
self.s3.meta.get("client", None).head_bucket(Bucket=bucket_name)
to get it to work....
it was throwing error: "dictionary object has no property "client"
I assume I have something wrong but dont' know what.
Can someone tell me why I seem alone in hitting this issue?
The text was updated successfully, but these errors were encountered: