From 555e08e86ab62cb471850c51022cef4761a2f0f8 Mon Sep 17 00:00:00 2001 From: Dileep Ranganathan Date: Thu, 22 Mar 2018 10:07:01 -0700 Subject: Fix Exception in resolve_demands RPC 'keyspace' is missing in the context parameter passed to the resolve_demands rpc from translator Change-Id: Ic9a3a11232ec558daa89890f904b4ee485ad3c50 Issue-ID: OPTFRA-198 Signed-off-by: Dileep Ranganathan --- conductor/conductor/controller/translator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conductor/conductor/controller/translator.py b/conductor/conductor/controller/translator.py index 00e650b..dbff2d2 100644 --- a/conductor/conductor/controller/translator.py +++ b/conductor/conductor/controller/translator.py @@ -475,6 +475,7 @@ class Translator(object): ctxt = { "plan_id": self._plan_id, "plan_name": self._plan_name, + "keyspace": self.conf.keyspace, } args = { "demands": { -- cgit 1.2.3-korg