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:
@@ -48,7 +48,8 @@ mlflow_content_filter_functions = {
|
|||||||
|
|
||||||
class Gates(BaseActivity):
|
class Gates(BaseActivity):
|
||||||
def __init__(self, logger: Logger, notification_handler: NotificationHandler):
|
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")
|
@activity.defn(name="input_gate")
|
||||||
async def input_gate(self, input_data: dict[str, Any]) -> tuple[str | None, int, str]:
|
async def input_gate(self, input_data: dict[str, Any]) -> tuple[str | None, int, str]:
|
||||||
|
|||||||
@@ -16,7 +16,8 @@ with workflow.unsafe.imports_passed_through():
|
|||||||
class MLFlow(BaseActivity):
|
class MLFlow(BaseActivity):
|
||||||
def __init__(self, mlflow_host: str, mlflow_port: int, mlflow_username: str,
|
def __init__(self, mlflow_host: str, mlflow_port: int, mlflow_username: str,
|
||||||
mlflow_password: str, logger: Logger, notification_handler: NotificationHandler):
|
mlflow_password: str, logger: Logger, notification_handler: NotificationHandler):
|
||||||
BaseActivity.__init__(self, logger, notification_handler)
|
BaseActivity.__init__(
|
||||||
|
self, logger, notification_handler, set_error_counter=True)
|
||||||
self.mlflow_host = mlflow_host
|
self.mlflow_host = mlflow_host
|
||||||
self.mlflow_port = mlflow_port
|
self.mlflow_port = mlflow_port
|
||||||
self.mlflow_username = mlflow_username
|
self.mlflow_username = mlflow_username
|
||||||
|
|||||||
@@ -51,7 +51,8 @@ class OPC(BaseActivity):
|
|||||||
attachment_content=error_data.get(
|
attachment_content=error_data.get(
|
||||||
'attachment_content', None)
|
'attachment_content', None)
|
||||||
)
|
)
|
||||||
BaseActivity.__init__(self, logger, notification_handler)
|
BaseActivity.__init__(
|
||||||
|
self, logger, notification_handler, set_error_counter=True)
|
||||||
|
|
||||||
def write_data(self, server_id: str, tag: str, data: Any,
|
def write_data(self, server_id: str, tag: str, data: Any,
|
||||||
data_type: str, tag_type: str, metadata: dict[str, Any]) -> bool:
|
data_type: str, tag_type: str, metadata: dict[str, Any]) -> bool:
|
||||||
|
|||||||
Reference in New Issue
Block a user