Fix typo in rpcapi.driver_vendor_passthru

Argument was incorrectly spelled, slipped through code review.

Change-Id: Ied5dd46e5cd83fed81928ade62805992409124f6
This commit is contained in:
Jim Rollenhagen 2014-04-30 17:47:04 -07:00
parent 11e9f70614
commit 56e8424ffc

View File

@ -178,7 +178,7 @@ class ConductorAPI(object):
cctxt = self.client.prepare(topic=topic or self.topic)
return cctxt.call(context, 'driver_vendor_passthru',
driver_name=driver_name,
river_method=driver_method,
driver_method=driver_method,
info=info)
def do_node_deploy(self, context, node_id, topic=None):