Amir Attar

Results 10 comments of 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...

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 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...