From df27b2dd71f747ade07ef60f20794cd0b757d320 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Wed, 22 Jan 2025 13:11:30 -0500 Subject: [PATCH] introduce regression --- ddtrace/propagation/http.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ddtrace/propagation/http.py b/ddtrace/propagation/http.py index fdaf97410ad..80603b292f8 100644 --- a/ddtrace/propagation/http.py +++ b/ddtrace/propagation/http.py @@ -1,6 +1,7 @@ import itertools import re import sys +import time from typing import Any # noqa:F401 from typing import Dict # noqa:F401 from typing import FrozenSet # noqa:F401 @@ -1126,6 +1127,7 @@ def my_controller(url, headers): :param dict headers: HTTP headers to extract tracing attributes. :return: New `Context` with propagated attributes. """ + time.sleep(0.1) context = Context() if not headers or not config._propagation_style_extract: return context