diff options
author | Peter Portante <peter.portante@redhat.com> | 2012-10-29 20:51:12 -0400 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2012-11-16 04:47:09 -0800 |
commit | d2040d1213d0486d36ddb8280a232ef64d81a481 (patch) | |
tree | 0e7fc31c158926392584f4d677182a3c617d0008 /swift/1.4.8/plugins/DiskDir.py | |
parent | 6bd81f29d9cb6dc7131115629b9b6ca03dff2c4d (diff) |
object-storage: remove the device and part params
Change-Id: I60b4b1b976ad8359ba072d5d0ed6a8dd2087a738
Signed-off-by: Peter Portante <peter.portante@redhat.com>
Reviewed-on: http://review.gluster.org/4174
Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com>
Reviewed-by: Mohammed Junaid <junaid@redhat.com>
Tested-by: Kaleb KEITHLEY <kkeithle@redhat.com>
Diffstat (limited to 'swift/1.4.8/plugins/DiskDir.py')
-rw-r--r-- | swift/1.4.8/plugins/DiskDir.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/swift/1.4.8/plugins/DiskDir.py b/swift/1.4.8/plugins/DiskDir.py index a9e39fd4c4f..65845b93308 100644 --- a/swift/1.4.8/plugins/DiskDir.py +++ b/swift/1.4.8/plugins/DiskDir.py @@ -140,8 +140,6 @@ class DiskDir(DiskCommon): Manage object files on disk. :param path: path to devices on the node - :param device: device name (unused, ignored) - :param partition: partition on the device the object lives in (unused, ignored) :param account: account name for the object :param container: container name for the object :param logger: account or container server logging object @@ -149,7 +147,7 @@ class DiskDir(DiskCommon): :param gid: group ID container object should assume """ - def __init__(self, path, device, partition, account, container, logger, + def __init__(self, path, account, container, logger, uid=DEFAULT_UID, gid=DEFAULT_GID): self.root = path if container: @@ -422,7 +420,7 @@ class DiskDir(DiskCommon): class DiskAccount(DiskDir): def __init__(self, root, account, logger): - super(DiskAccount, self).__init__(root, None, None, account, None, logger) + super(DiskAccount, self).__init__(root, account, None, logger) assert self.dir_exists def list_containers_iter(self, limit, marker, end_marker, |