summaryrefslogtreecommitdiffstats
path: root/adapter/acumos/aoconversion/dataformat_gen.py
diff options
context:
space:
mode:
authorshabs2020 <shabnam.sultana@highstreet-technologies.com>2021-06-04 12:08:23 +0200
committershabs2020 <shabnam.sultana@highstreet-technologies.com>2021-06-08 08:54:13 +0200
commite5d51b57a83f17a471b69d83c39655c1523b66d6 (patch)
tree4edee61686dea44f1c9177598b7ebbf187a5cdfc /adapter/acumos/aoconversion/dataformat_gen.py
parent4a02e289d08e2a9d6203b6e72e2a7c8bd3228070 (diff)
Adapt DCAE adapter to work with Acumos Demeter's metadata structure change1.0.6-adapter-acumos
Fix the dataformat generation failure due to Demeter's metadata change. At the same maintain its backward compatibility with Acumos Clio. Issue-ID: DCAEGEN2-2825 Signed-off-by: shabs2020 <shabnam.sultana@highstreet-technologies.com> Change-Id: I0f665415d1b3c94e774eec5a56c8df598d222cd3 Signed-off-by: shabs2020 <shabnam.sultana@highstreet-technologies.com>
Diffstat (limited to 'adapter/acumos/aoconversion/dataformat_gen.py')
-rw-r--r--adapter/acumos/aoconversion/dataformat_gen.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/adapter/acumos/aoconversion/dataformat_gen.py b/adapter/acumos/aoconversion/dataformat_gen.py
index 71b1617..6701c7c 100644
--- a/adapter/acumos/aoconversion/dataformat_gen.py
+++ b/adapter/acumos/aoconversion/dataformat_gen.py
@@ -2,6 +2,7 @@
# org.onap.dcae
# =============================================================================
# Copyright (c) 2019-2020 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2021 highstreet technologies GmbH. All rights reserved.
# =============================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -54,8 +55,8 @@ def _get_needed_formats(meta):
# we use a dict because multiple methods may reuse names
needed_formats = {}
for method in meta["methods"]:
- needed_formats[meta["methods"][method]["input"]] = 1
- needed_formats[meta["methods"][method]["output"]] = 1
+ needed_formats[utils.validate_format(meta, method, "input")] = 1
+ needed_formats[utils.validate_format(meta, method, "output")] = 1
return list(needed_formats.keys())