MeteringPluginRpc: Fix crash in periodic_task

Restore __init__ chain which has been broken by
commit bdcc5a46d7776f50d5ae372798a913349629d2f6 .

Closes-Bug: #1396893
Change-Id: Ia1f0357b6726ac79a22ed1666eecebac33689aa1
This commit is contained in:
YAMAMOTO Takashi 2014-11-27 16:16:03 +09:00
parent 5b7950e24c
commit e1ecf565c6
2 changed files with 11 additions and 0 deletions

View File

@ -45,6 +45,11 @@ LOG = logging.getLogger(__name__)
class MeteringPluginRpc(object):
def __init__(self, host):
# NOTE(yamamoto): super.__init__() call here is not only for
# aesthetics. Because of multiple inheritances in MeteringAgent,
# it's actually necessary to initialize parent classes of
# manager.Manager correctly.
super(MeteringPluginRpc, self).__init__()
target = messaging.Target(topic=topics.METERING_PLUGIN, version='1.0')
self.client = n_rpc.get_client(target)

View File

@ -158,3 +158,9 @@ class TestMeteringDriver(base.BaseTestCase):
{'driver': self.noop_driver,
'func':
'add_metering_label'})
def test_init_chain(self):
with mock.patch('neutron.openstack.common.'
'periodic_task.PeriodicTasks.__init__') as init:
metering_agent.MeteringAgent('my agent', cfg.CONF)
init.assert_called_once_with()