Skip to content

Commit 1975b0a

Browse files
committed
fix(sanic): handle headers extraction after multidict update
- `sanic.compat.Header` contains `__dict__` but does not store the dictionary in it Signed-off-by: Varsha GS <[email protected]>
1 parent c4e61fa commit 1975b0a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/instana/propagators/base_propagator.py

+2
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ def extract_headers_dict(carrier: CarrierT) -> Optional[Dict]:
8989
dc = carrier
9090
elif hasattr(carrier, "__dict__"):
9191
dc = carrier.__dict__
92+
if not dc:
93+
dc = dict(carrier)
9294
else:
9395
dc = dict(carrier)
9496
except Exception:

0 commit comments

Comments
 (0)