SIENTIAPDE-1222

Update MLFlow class to pass logger instance directly to MLFlowRepository

- Modified the initialization of MLFlowRepository in the MLFlow class to pass the logger instance directly, improving logging capabilities and consistency across the application.
This commit is contained in:
vitor-aignosi
2025-09-17 10:27:02 -03:00
parent 863bbdcc57
commit fc3c4ebb45

View File

@@ -60,7 +60,7 @@ class MLFlow(BaseActivity):
self.mlflow_password = mlflow_password
self.model_monitoring_repository = MLFlowRepository(
f"{mlflow_host}:{mlflow_port}", mlflow_username, mlflow_password, logger.base_logger
f"{mlflow_host}:{mlflow_port}", mlflow_username, mlflow_password, logger
)
@activity.defn(name="request_transform")