summaryrefslogtreecommitdiffstats
path: root/gluster/swift/account/server.py
diff options
context:
space:
mode:
Diffstat (limited to 'gluster/swift/account/server.py')
-rw-r--r--gluster/swift/account/server.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/gluster/swift/account/server.py b/gluster/swift/account/server.py
index ca718c3..a2a20af 100644
--- a/gluster/swift/account/server.py
+++ b/gluster/swift/account/server.py
@@ -24,7 +24,8 @@ from gluster.swift.common.DiskDir import DiskAccount
class AccountController(server.AccountController):
- def _get_account_broker(self, drive, part, account):
+
+ def _get_account_broker(self, drive, part, account, **kwargs):
"""
Overriden to provide the GlusterFS specific broker that talks to
Gluster for the information related to servicing a given request
@@ -35,7 +36,7 @@ class AccountController(server.AccountController):
:param account: account name
:returns: DiskDir object
"""
- return DiskAccount(self.root, drive, account, self.logger)
+ return DiskAccount(self.root, drive, account, self.logger, **kwargs)
def app_factory(global_conf, **local_conf):