We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85ca91e commit a08493aCopy full SHA for a08493a
azure/durable_functions/models/utils/http_utils.py
@@ -28,9 +28,9 @@ async def post_async_request(url: str,
28
async with aiohttp.ClientSession() as session:
29
headers = {}
30
if trace_parent:
31
- headers["traceparent"] = trace_parent
+ headers["x-client-traceparent"] = trace_parent
32
if trace_state:
33
- headers["tracestate"] = trace_state
+ headers["x-client-tracestate"] = trace_state
34
async with session.post(url, json=data, headers=headers) as response:
35
# We disable aiohttp's input type validation
36
# as the server may respond with alternative
0 commit comments