HTTPBackend.get() needed options in kwargs

This commit is contained in:
jaypipes@gmail.com
2011-03-17 15:57:47 -04:00
parent d2db5a3b70
commit 7040ce5036

View File

@@ -24,7 +24,7 @@ class HTTPBackend(glance.store.Backend):
""" An implementation of the HTTP Backend Adapter """
@classmethod
def get(cls, parsed_uri, expected_size, conn_class=None):
def get(cls, parsed_uri, expected_size, options=None, conn_class=None):
"""Takes a parsed uri for an HTTP resource, fetches it, and yields the
data.
"""