Denis Otkidach

Results 101 comments of Denis Otkidach

What features do you miss on aiokafka side? `KafkaInstrumentor` from the link above just monkey-patches two methods of producer and consumer, I see no problem to do the same for...

One more case: ```python from types import MethodType class C: def m(self): pass def f(meth: MethodType): meth.__self__ f(C().m) ``` The output: ```error: Argument 1 to "f" has incompatible type "Callable[[],...

Already implemented in #999 and #1005

Using `pyproject.toml` is just one of `uv` usage scenarios, similar to `pip-tools`. Actually `pyproject.toml` doesn't work well with dependencies split into production/development.

`AIOKafkaAdminClient` must be bootstrapped before use, the preferred way is ```python async with AIOKafkaAdminClient(...) as client: ... ```

`allurectl watch -- pytest --alluredir=...` allows to update report during the tests. So, if we write "unknown" status for all tests at the beginning, we can see the progress. And...

The content of `namespace/__init__.py` file in one of the linraries is: ```python """Common libraries for ...........""" __import__("pkg_resources").declare_namespace(__name__) __version__ = "1.11.0" ``` the content of it in another library: ```python #...

> On what platform are you on In docker, image is based on official python:3.12.4-slim, linux/x86_64 > are you setting --link-mode No. The actually used command is: ```dockerfile RUN --mount=from=uv,source=/uv,target=/bin/uv...

Hi @Ben621, thank you for highlighting the problem. We need to add newer versions for the broker to the CI matrix. This will probably require reworking how we build the...

> There is an error reported in [aiokafka/util.py](https://github.com/aio-libs/aiokafka/blob/199537bb02177ff935ccdefa2b44615214024a0f/aiokafka/util.py#L59) that restricts compatibility. Could you please provide a complete report with the traceback? > @vmaurin BTW, according to the code you can't...