From 56e8424ffc7c589b8a736d944fee05627a5f0c12 Mon Sep 17 00:00:00 2001 From: Jim Rollenhagen Date: Wed, 30 Apr 2014 17:47:04 -0700 Subject: [PATCH] Fix typo in rpcapi.driver_vendor_passthru Argument was incorrectly spelled, slipped through code review. Change-Id: Ied5dd46e5cd83fed81928ade62805992409124f6 --- ironic/conductor/rpcapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ironic/conductor/rpcapi.py b/ironic/conductor/rpcapi.py index 79dcdcd191..5cd00849eb 100644 --- a/ironic/conductor/rpcapi.py +++ b/ironic/conductor/rpcapi.py @@ -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):