From 99d06d757cdc016371b27b7c5e9f55661d48f3bb Mon Sep 17 00:00:00 2001 From: Cagri Yonca Date: Mon, 17 Aug 2026 23:27:07 +0200 Subject: [PATCH] fix: Set default value for asyncio context propagation as True. Signed-off-by: Cagri Yonca --- src/instana/configurator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/instana/configurator.py b/src/instana/configurator.py index 65efb35d..7fbbc997 100644 --- a/src/instana/configurator.py +++ b/src/instana/configurator.py @@ -14,4 +14,4 @@ # This option determines if tasks created via asyncio (with ensure_future or create_task) will # automatically carry existing context into the created task. -config["asyncio_task_context_propagation"]["enabled"] = False +config["asyncio_task_context_propagation"]["enabled"] = True