From 9c240d9a5d7f8005307cebd7597d87adcf45ab1d Mon Sep 17 00:00:00 2001 From: "sonu.kumar" Date: Wed, 14 Oct 2015 15:04:17 +0530 Subject: [PATCH] Fixes error over quota update This patch adds --api-export-size option to quota update cli in designate client. Change-Id: I376a1fdb19c44796721adad766d74efbc793757c Closes-Bug: #1505951 --- designateclient/cli/quotas.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/designateclient/cli/quotas.py b/designateclient/cli/quotas.py index 48a36dc..ae41690 100644 --- a/designateclient/cli/quotas.py +++ b/designateclient/cli/quotas.py @@ -53,6 +53,9 @@ class UpdateQuotaCommand(base.UpdateCommand): parser.add_argument('--domain-records', help="Allowed domain records.", type=int) + parser.add_argument('--api-export-size', + help="Allowed zone export recordsets.", + type=int) return parser def execute(self, parsed_args):