mirror of
https://github.com/ceph/s3-tests.git
synced 2024-11-28 19:31:39 +00:00
6 lines
176 B
Python
6 lines
176 B
Python
|
from boto.auth_handler import AuthHandler
|
||
|
|
||
|
class AnonymousAuthHandler(AuthHandler):
|
||
|
def add_auth(self, http_request, **kwargs):
|
||
|
return # Nothing to do for anonymous access!
|