Danil Troshnev

Results 10 comments of Danil Troshnev

I'm facing the same issue. In production celery and redis work fine. But I can't setup tests to check if my task pipeline works as expected. I made a simple...

I found this issue and I think it's related to my problem: I want mypy to check the types in provider constructors to match the types of the constructor of...

fyi, I've started to work on it. I found that this issue is similar to https://github.com/python/mypy/issues/1484 , because providers act like a partial function which is called then on class...

I found a "cache lookup failed" related issue in sqlalchemy https://github.com/sqlalchemy/sqlalchemy/issues/6645 . Maybe the 1 described behavior is not a GINO's bug. But I'm not sure about the 2 behavior.

One more thing. I found that async sqlalchemy (with asyncpg driver) works as expected for me in 1 and 2 cases ([full code in repo](https://github.com/zerlok/python-bugs/tree/try/sqlalchemy-asyncio)). Dependencies: ``` asyncpg==0.25.0; python_full_version >=...

Hi, @ rmk135, thanks for response. I hope then mypy will fix it somehow. I leave the issue open by now. Also I think that you may add a simple...

Hey, @rmk135 . The related [mypy issue](https://github.com/python/mypy/issues/5374) was closed. I tried to update mypy and dependency-injector and retry my code - the issue remains the same: ``` mycontainer.py: note: In...

Faced same problems with async support. If I try to run the code that imports my `MyServiceAsyncStub` python fails with `AttributeError: module 'my_pb2_grpc' has no attribute 'MyServiceAsyncStub'`. The only workaround...

I'm facing the same issue, trying to configure the grafana in docker container. I started the clean grafana container ``` $ docker-compose images grafana Container Repository Tag Image Id Size...

After some time I decided to implement my own stub generator https://github.com/zerlok/pyprotostuben . It allows you to choose to generate either async or sync stubs. There better support with HasField...