SIENTIAPDE-1199

Update Ingestor project name and metadata keys to lowercase for consistency

- Changed project_name, workflow_name, and schema_name from uppercase to lowercase in Ingestor class and corresponding unit tests.
This commit is contained in:
vitor-aignosi
2025-08-20 12:16:38 -03:00
parent 2fa07728f9
commit a19ec20c12
2 changed files with 6 additions and 6 deletions

View File

@@ -66,14 +66,14 @@ class Ingestor:
connection_string=self.mongo_connection_string, connection_string=self.mongo_connection_string,
database=self.mongo_database, database=self.mongo_database,
logger=self.logger, logger=self.logger,
project_name="OPC_INGESTOR" project_name="opc_ingestor"
) )
self.metadata = { self.metadata = {
'model_id': '-', 'model_id': '-',
'model_name': '-', 'model_name': '-',
'workflow_name': 'OPC_INGESTOR', 'workflow_name': 'opc_ingestor',
'schema_name': 'OPC_INGESTOR', 'schema_name': 'opc_ingestor',
'pod_id': self.pod_id, 'pod_id': self.pod_id,
} }
self.ingestor_manager = None self.ingestor_manager = None

View File

@@ -49,8 +49,8 @@ def test___init__(notification_handler, getenv):
assert ingestor.metadata == { assert ingestor.metadata == {
"model_id": "-", "model_id": "-",
"model_name": "-", "model_name": "-",
"workflow_name": "OPC_INGESTOR", "workflow_name": "opc_ingestor",
"schema_name": "OPC_INGESTOR", "schema_name": "opc_ingestor",
"pod_id": "localhost1" "pod_id": "localhost1"
} }
@@ -58,7 +58,7 @@ def test___init__(notification_handler, getenv):
connection_string="mongodb://sientia:sientia@localhost:27017", connection_string="mongodb://sientia:sientia@localhost:27017",
database="sientia", database="sientia",
logger=ingestor.logger, logger=ingestor.logger,
project_name="OPC_INGESTOR" project_name="opc_ingestor"
) )