Jose Eduardo
Jose Eduardo
**Describe the bug** Very similar to a previous issue https://github.com/Textualize/rich/issues/299 . Not exactly a regression, since that one depended on having a custom theme. But the steps to reproduce are...
Is there a way to change the logo, the colors, etc of the UI ? If not, would you accept a pull request to support it ? Thanks.
I have a minimal example code in this gist https://gist.github.com/JoseKilo/319493e6ef3f17d86a76ad7c7b20055e It's a modified version of the stream-dealer-router example https://github.com/aio-libs/aiozmq/blob/master/examples/stream_dealer_router.py The differences are: - Instead of running everything from the same...
## 🐛 Bug Report It seems there is an inconsistency between i18next-scanner and i18next options: i18next uses: `defaultNS` i18next-scanner uses: `defaultNs` Note the different case of the `S`. ## To...
I have an abstract class that defines an abstract async context manager (Python 3.7 code): ```python import abc import contextlib class Foo(metaclass=abc.ABCMeta): @abc.abstractmethod @contextlib.asynccontextmanager async def bar(self): pass ``` In...
## Long story short Following this example from the docs https://docs.aiohttp.org/en/stable/web_advanced.html?highlight=going_away#graceful-shutdown The code and message passed to `ws.close` don't reach the client side and instead, a default code and message...
Closes #51
This line from the middleware makes sure that exceptions are re-raised after counting them: https://github.com/perdy/starlette-prometheus/blob/master/starlette_prometheus/middleware.py#L57 But the `from None` part is removing any existing chain from the original exception. This...
Hi, nice project, thank you for maintaining it ! Looks like there is a new 0.10.0 release committed: https://github.com/perdy/starlette-prometheus/commit/3d2f82e136116c78c66db653b6f6a0b262ad6d89 But it isn't tagged (https://github.com/perdy/starlette-prometheus/tags) And it hasn't been published to...
When I subscribe to events using the Redis backend, any errors raised by the Redis library seem to be swallowed by the subscriber side of `broadcaster`. ## Steps to reproduce...