From 606bcced4b418f6811c4094c3786ed1d052573e4 Mon Sep 17 00:00:00 2001 From: dextmorgn Date: Mon, 16 Feb 2026 09:16:26 +0100 Subject: [PATCH] feat(enrichers): add delay to dummy enricher --- .../src/flowsint_enrichers/ip/to_dummy_domains.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/flowsint-enrichers/src/flowsint_enrichers/ip/to_dummy_domains.py b/flowsint-enrichers/src/flowsint_enrichers/ip/to_dummy_domains.py index d7f616e..f8d1776 100644 --- a/flowsint-enrichers/src/flowsint_enrichers/ip/to_dummy_domains.py +++ b/flowsint-enrichers/src/flowsint_enrichers/ip/to_dummy_domains.py @@ -1,10 +1,13 @@ import asyncio +import time from typing import List -from flowsint_core.core.logger import Logger + from flowsint_core.core.enricher_base import Enricher -from flowsint_enrichers.registry import flowsint_enricher -from flowsint_types.ip import Ip +from flowsint_core.core.logger import Logger from flowsint_types.domain import Domain +from flowsint_types.ip import Ip + +from flowsint_enrichers.registry import flowsint_enricher @flowsint_enricher @@ -104,6 +107,7 @@ class IpToDummyDomainsEnricher(Enricher): "domain": dummy_domain, }, ) + time.sleep(1) Logger.info( self.sketch_id,