Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions ms_data_mapping_processor/models/configuration_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,12 +193,12 @@ def _get_repos_configs(self):
_logger.info(f"No AAS repository configuration files found in folder '{config_path}'.")
return

for json_file in json_files:
try:
try:
for json_file in json_files:
aas_server_configuration = ServerConfiguration.model_validate_json(json_file.read_text())
self.repo_server_configurations.append(aas_server_configuration)
except ValidationError as ve:
_logger.error(f"Invalid AAS repository connection file '{json_file}': {ve}")
except ValidationError as ve:
_logger.error(f"Invalid AAS repository connection file '{json_file}': {ve}")

_logger.debug(f"Found {len(self.repo_server_configurations)} AAS repository configuration files in folder '{config_path}'.")

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ms-data-mapping-processor"
version = "0.0.7"
version = "0.9.0"
description = "Microservice 'data mapping processor' for retrieving dynamic data from the asset connector and providing this data as a standard AAS structure."
readme = "README.md"
license = { file = "LICENSE" }
Expand Down
Binary file modified requirements.txt
Binary file not shown.
Loading