Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
skynetigor committed Dec 23, 2024
1 parent 7f5df0d commit c4de245
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ def provision_deduplication_rules_from_env(tenant_id: str):
db.delete_deduplication_rule(rule_id=str(provisioned_deduplication_rule.id), tenant_id=tenant_id)

for deduplication_rule_to_provision in deduplication_rules_from_env_dict.values():
# check if the rule already exists and needs to be overwritten
if (
deduplication_rule_to_provision.get("name")
in provisioned_deduplication_rules_from_db_dict
Expand Down Expand Up @@ -85,7 +84,6 @@ def provision_deduplication_rules_from_env(tenant_id: str):
)
continue

# create the rule
logger.info(
"Deduplication rule with name '%s' does not exist, creating in DB",
deduplication_rule_to_provision.get("name"),
Expand Down

0 comments on commit c4de245

Please sign in to comment.