David Huser

Results 20 comments of David Huser

perhaps this issue is related? https://github.com/cdrx/docker-pyinstaller/issues/105

@MaxwellEdisons you could re-load them again with dotenv (which should already be present as it used by pydantic) ```python import uvicorn from dotenv import load_dotenv load_dotenv("../.env") if __name__ == "__main__":...

I describe a (experimental?) approach to re-enqueue using `JobStatus` but without `job_id` here: https://github.com/samuelcolvin/arq/issues/457 , although not sure whether this would actually help in your case too.

I got it working like this (using PyCharm Professional 2024.1.3 ) **Docker Connection** - Navigate to PyCharm Settings > Build, Execution, Deployment > Docker - Verify connection to a running...

I'm using the image `confluentinc/ksqldb-server:0.29.0` , with the setting "Use Rosetta for x86/amd64 emulation on Apple Silicon" **disabled** the container just hangs with high CPU usage, or succeeds (seemingly random)....

For those that still cannot connect, another pointer is that if you run ksqldb-server in headless mode (i.e. in docker-compose.yml you specify a queries file, e.g. `KSQL_KSQL_QUERIES_FILE: "/ksql/statements.sql"` , the...

With @rhuanbarreto 's hint I can confirm the tickbox is selected automatically and it's possible to auth in endpoints directly. Here's what I do for B2C: ```python SCOPE_NAME = f'https://{settings.TENANT_NAME}.onmicrosoft.com/{settings.APP_CLIENT_ID}/user_impersonation'...

I like the idea but this would be a breaking change I think as it was introduced with v2

hi @LarsEspenNordhus, thanks for interest and the PR. Currently, I'm focusing on other projects and commitments, so I won't be able maintain this library any further.

hi @Gutorm , many thanks for reporting it. The `import_response_ok` function has been a way (or a small crutch...) to handle the inconsistencies of the DHIS2 API when it returned...