From 468291a94478056985acba48856b6c2fc09b9a91 Mon Sep 17 00:00:00 2001 From: Ross Gray Date: Thu, 19 Dec 2024 10:26:08 +0000 Subject: [PATCH] Add missing temporal activity --- posthog/temporal/batch_exports/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/posthog/temporal/batch_exports/__init__.py b/posthog/temporal/batch_exports/__init__.py index a3616f1107c5b..169a19f4232d1 100644 --- a/posthog/temporal/batch_exports/__init__.py +++ b/posthog/temporal/batch_exports/__init__.py @@ -19,6 +19,7 @@ ) from posthog.temporal.batch_exports.monitoring import ( BatchExportMonitoringWorkflow, + check_for_missing_batch_export_runs, get_batch_export, get_event_counts, update_batch_export_runs, @@ -86,4 +87,5 @@ get_batch_export, get_event_counts, update_batch_export_runs, + check_for_missing_batch_export_runs, ]