SIENTIAPDE-1169

Enhance BaseActivity initialization across multiple activities to include error counter

- Updated the initialization of the BaseActivity in Gates, MLFlow, and OPC classes to set the error counter to True, improving error tracking and handling capabilities.
This commit is contained in:
vitor-aignosi
2025-08-14 15:41:03 -03:00
parent da10f900a8
commit 7f3457e318
3 changed files with 6 additions and 3 deletions

View File

@@ -48,7 +48,8 @@ mlflow_content_filter_functions = {
class Gates(BaseActivity):
def __init__(self, logger: Logger, notification_handler: NotificationHandler):
BaseActivity.__init__(self, logger, notification_handler)
BaseActivity.__init__(
self, logger, notification_handler, set_error_counter=True)
@activity.defn(name="input_gate")
async def input_gate(self, input_data: dict[str, Any]) -> tuple[str | None, int, str]: