From 1cf475d7a135c1078cf7df11c261618af501dc37 Mon Sep 17 00:00:00 2001 From: Eoghan Glynn Date: Thu, 16 Aug 2012 16:11:03 +0100 Subject: Revert per-user-quotas See bug 1034384, bug 1037590. This reverts commit https://github.com/openstack/nova/commit/391f345d, but leaves the DB migration in place while adding a further migration to reverse it. The motivation for reversion is that the per-user quota logic would totally undermine the per-project quotas set for a pre-existing openstack install. The per-user quota logic could be re-introduced in a fixed state after Folsom-3. Change-Id: Idd4b55a2404a25f43f6737b661f828c28501066f --- nova/exception.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'nova/exception.py') diff --git a/nova/exception.py b/nova/exception.py index 6c855ec7e..5d232bdd8 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -750,11 +750,6 @@ class QuotaResourceUnknown(QuotaNotFound): message = _("Unknown quota resources %(unknown)s.") -class UserQuotaNotFound(QuotaNotFound): - message = _("Quota for user %(user_id)s in project %(project_id)s " - "could not be found.") - - class ProjectQuotaNotFound(QuotaNotFound): message = _("Quota for project %(project_id)s could not be found.") -- cgit