Skip to content

Commit

Permalink
Merge "Translate the project UUID in neutron format"
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Aug 17, 2015
2 parents 65621da + 82663d3 commit 3c92f97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neutron_plugin_contrail/plugins/opencontrail/quota/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
except ImportError:
from oslo_log import log as logging

from oslo.config import cfg
from neutron.common.config import cfg
from httplib2 import Http
import re
import string
Expand Down Expand Up @@ -146,7 +146,7 @@ def get_all_quotas(cls, context, resources):
continue
quotas = cls._get_tenant_quotas(context, resources, project['uuid'],
default_quota)
quotas['tenant_id'] = project['uuid']
quotas['tenant_id'] = project['uuid'].replace('-', '')
ret_list.append(quotas)
return ret_list

Expand Down

0 comments on commit 3c92f97

Please sign in to comment.