From 53dfecc7ab2c236875cad942cb990a52398c44ed Mon Sep 17 00:00:00 2001 From: Graham Herceg Date: Mon, 9 Sep 2024 14:28:23 -0400 Subject: [PATCH] Add 'unknown' source tag --- corehq/apps/data_interfaces/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/corehq/apps/data_interfaces/models.py b/corehq/apps/data_interfaces/models.py index 1ba974b27c26..a877d56f353b 100644 --- a/corehq/apps/data_interfaces/models.py +++ b/corehq/apps/data_interfaces/models.py @@ -1163,7 +1163,7 @@ def _handle_case_duplicate(self, case, rule): if is_copied_case(case): return CaseRuleActionResult() - dedupe_load_counter(case.domain) + dedupe_load_counter('unknown', case.domain) if not case_matching_rule_criteria_exists_in_es(case, rule): ALLOWED_ES_DELAY = timedelta(hours=1)