Comment 10 for bug 1217017

Revision history for this message
Mahesh Sawaiker (mahesh-sawaiker) wrote : Re: dependency injection fails to init domain-specific identity drivers

I found a similar problem with keystone.identity.backends.sql.py. Had to add a constructor with
 arguments that calls the no arg constructor.

@dependency.requires('assignment_api')
class Identity(identity.Driver):

    def __init__(self, *args, **kwargs):
        super(identity.Driver, self).__init__()