From 785714bc52f66efec8044933779bd3b1f41f29c5 Mon Sep 17 00:00:00 2001 From: "Chayal, Avteet (ac229e)" Date: Tue, 12 Feb 2019 18:37:26 +0000 Subject: Fix to populate missing fields in request to HAS Populate requiredCandidates and excludedCandidates for HAS Issue-ID: OPTFRA-438 Change-Id: I23702a572ce3645aa52d27e7a8d58f775349cbb8 Signed-off-by: Chayal, Avteet (ac229e) --- osdf/optimizers/placementopt/conductor/translation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'osdf/optimizers/placementopt/conductor/translation.py') diff --git a/osdf/optimizers/placementopt/conductor/translation.py b/osdf/optimizers/placementopt/conductor/translation.py index f74f461..93b80bf 100644 --- a/osdf/optimizers/placementopt/conductor/translation.py +++ b/osdf/optimizers/placementopt/conductor/translation.py @@ -205,7 +205,7 @@ def get_candidates_demands(demand): for k, v in policy_config_mapping['candidates'].items(): if k not in demand: continue - res[v] = [{'inventory_type': x['candidateType'], 'candidate_id': x['candidates']} for x in demand[k]] + res[v] = [{'inventory_type': x['identifierType'], 'candidate_id': x['identifiers']} for x in demand[k]] return res -- cgit 1.2.3-korg