From fba4164637608199672d1700cec8a416fdbfd90b Mon Sep 17 00:00:00 2001 From: TommyLike Date: Mon, 31 Jul 2017 19:30:50 +0800 Subject: [PATCH] Added missing column 'Allocated' Added missing column 'Allocated' for quota usage command. Change-Id: Ic2656e2f849e834c7a576b0462d6e8a399a95006 --- cinderclient/shell_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinderclient/shell_utils.py b/cinderclient/shell_utils.py index e01b0cff2..996f6e158 100644 --- a/cinderclient/shell_utils.py +++ b/cinderclient/shell_utils.py @@ -23,7 +23,7 @@ from cinderclient import exceptions _quota_resources = ['volumes', 'snapshots', 'gigabytes', 'backups', 'backup_gigabytes', 'per_volume_gigabytes', 'groups', ] -_quota_infos = ['Type', 'In_use', 'Reserved', 'Limit'] +_quota_infos = ['Type', 'In_use', 'Reserved', 'Limit', 'Allocated'] def print_volume_image(image):