Ivan Larin

Results 11 comments of Ivan Larin

I wrote Github Actions pipeline for crossbuilding swagger-ui image to 386, amd64, arm/v6, arm/v7, arm64, s390x architectures. https://github.com/Pentusha/swagger-ui/blob/master/.github/workflows/docker_crossbuild.yml It publish result images to Docker Hub: https://hub.docker.com/repository/docker/pentusha/swagger-ui-crossbuild/general Its works fine on...

I facing the same problem, but with the http trigger. ![image](https://user-images.githubusercontent.com/1904496/81921948-09ef9600-95e4-11ea-9f7f-b1cfe8b7f78d.png) ![image](https://user-images.githubusercontent.com/1904496/81921956-0e1bb380-95e4-11ea-851c-5e7644ac4af2.png) ![image](https://user-images.githubusercontent.com/1904496/81921961-107e0d80-95e4-11ea-9215-027c6d0cf5f8.png) ![image](https://user-images.githubusercontent.com/1904496/81921969-1378fe00-95e4-11ea-802b-bb0e46b4ed2e.png)

@anirudhgarg I have lot of apps with this issue. e.g. `qa-client-users-eus-func`

I had a similar problem, but today I fixed it. It looks like this is due to a firmware update of the router. Today I change the connection class to...

You may be interested in a [project](https://github.com/Pentusha/edgeql-qb) that I made over a couple of weekends. The current features set can be best seen in [documentation](https://pentusha.github.io/edgeql-qb/queries). I tried to make it...

@dnikolayev https://github.com/python-gino/gino/discussions/799

@anton-petrov I would be very grateful if you could publish compiled wheels to PyPI.

First, python 3.12 support was initiated by @rmk135 and then he disappeared. Then @anton-petrov started developing of his fork and disappeared too. Well, now it's my time to take that...

If anyone is interested in a workaround with monkeypatch: ```python import pydantic from pydantic_settings import BaseSettings pydantic.BaseSettings = BaseSettings class AppContainer(containers.DeclarativeContainer): config = providers.Configuration(strict=True) env = providers.Configuration(strict=True, pydantic_settings=[env_secrets]) ... ```