Riccardo Magliocchetti

Results 480 comments of Riccardo Magliocchetti

@matHope thanks for reporting, what http header are you passing to the quart app?

> It appears to be that when __call__ is triggered (Due to a request) in the ASGITracingMiddleware the headers are read as bytes rather than a string and as a...

Thanks for reporting. Could you please run this script and see if it works? Trying to understand what python module may use something that is not fips friendly. ``` import...

@radupotop thanks for the PR, please run black on it and I'll review it

> Did this happen in CI? Do you have a link to the actual run that failed? It's from CI, I don't have a link

Spent a few on this and I think the instrumentation is right, if you don't want the artificial span, pushing the context should be enough as the example below. ```...

As a common package we have https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/util/opentelemetry-util-genai

From https://github.com/confluentinc/confluent-kafka-python/blob/master/src/confluent_kafka/cimpl.pyi#L168C7-L168C15, that does not match their definition though: ``` class Consumer: def __init__(self, config: Dict[str, Union[str, int, float, bool, None]]) -> None: ... ``` OTOH, the C implementation: https://github.com/confluentinc/confluent-kafka-python/blob/master/src/confluent_kafka/src/Consumer.c#L1783...