Remove revocation API dependency from resource API

The revocation API was listed as a dependency of the resource API,
but it was never used. If it was no longer being used, we shouldn't
make the resource API load it.

Change-Id: Ia70064dce20a0bebf7b31a6b895ea0e5a0248480
partial-bug: 1671887
This commit is contained in:
Lance Bragstad 2017-03-20 15:55:19 +00:00 committed by Steve Martinelli
parent de38b50fcc
commit 5da9d11e46
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ MEMOIZE = cache.get_memoization_decorator(group='resource')
@dependency.provider('resource_api')
@dependency.requires('assignment_api', 'credential_api', 'domain_config_api',
'identity_api', 'revoke_api', 'trust_api')
'identity_api', 'trust_api')
class Manager(manager.Manager):
"""Default pivot point for the Resource backend.