diff options
author | Dileep Ranganathan <dileep.ranganathan@intel.com> | 2018-03-22 10:07:01 -0700 |
---|---|---|
committer | Dileep Ranganathan <dileep.ranganathan@intel.com> | 2018-03-22 10:07:01 -0700 |
commit | 555e08e86ab62cb471850c51022cef4761a2f0f8 (patch) | |
tree | fa642ca43a9d64821a2c2b4ec3e9b22d48e491b9 /conductor | |
parent | 5e2f356e8a51c08b442c05a954f1d8ada394932f (diff) |
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 <dileep.ranganathan@intel.com>
Diffstat (limited to 'conductor')
-rw-r--r-- | conductor/conductor/controller/translator.py | 1 |
1 files changed, 1 insertions, 0 deletions
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": { |