Amir Attar
Amir Attar
Maybe the multiple runs can be aggregated in Bitrise to Github as a single check
@adinauer tracing for the Ktor http client requests would be great. Like the one you offer for the Spring client https://docs.sentry.io/platforms/java/guides/spring-boot/performance/instrumentation/automatic-instrumentation/ This would be relevant for both Android and Backend...
@krystofwoldrich is it resolved in v5.22.0?
How is this not fixed yet?
What is the current solution for web apps using expo router for this? is it adding some '#!' to the path + implement something in public/index.html?
So I overridden the hash method and it did solve the binding issue on startup ```python class DistinctQueue(RabbitQueue): def __hash__(self): return hash(self.routing_key) + super.__hash__(self) ``` But the thing is when...
@Lancetnik will this issue be resolved in #2034 ?
@Lancetnik is there a way to test 0.6 yet?
@Lancetnik thanks, I've checked out rev 9130e72 and ran the code below. ```python from fastapi import Depends, FastAPI from faststream.rabbit import RabbitExchange, RabbitQueue, ExchangeType from pydantic import BaseModel from faststream.rabbit.fastapi...
@Lancetnik what you're describing is more of a direct exchange approach. Topic exchange can have multiple bindings to the same queue See also this example https://www.rabbitmq.com/tutorials/tutorial-five-python#topic-exchange The binding part works...