Chris Knight

Results 36 comments of Chris Knight

For @not522 and any others who may be affected by this, here is the work around I'm using currently. First run the upgrade command to perform the initial migrations using...

Fyi I was facing too many issues with 21.04 which were interupting work so I rolled back to 20.04. I have gone through the installation steps on 20.04 and still...

I'm also hitting this. Need to perform some long running processing steps on uploaded files and it's no longer possible with BackgroundTasks due to the file being closed when returning...

In case it helps others, for now I'm working around this issue by adding my own `UploadFile` class which wraps and patches the `fastapi.UploadFile` class. Tested and it's working as...

I'm also hitting this issue. Using `aws ecr get-login-password` I can docker pull without any problems. I've installed from source just now using `go install github.com/awslabs/amazon-ecr-credential-helper/ecr-login/cli/docker-credential-ecr-login@latest` and I still face...

@vicef5 [the solution I suggested above](https://github.com/tiangolo/fastapi/issues/10857#issuecomment-2079878117) has been working fine for us as a patch until a more long term solution is introduced.

Any update on this? I'm still hitting this bug with pydantic v2. For others facing this issue, there is an alternative lib very similar to freezegun which is working without...

@samueldg thanks for the suggestion. I did try out the work around you shared above. unfortunately it didn't work in my case. My issue was actually being caused by an...

Relevant part of the stack trace for the similar problem coming from the Huggingface transformers library in case it's useful for debugging this issue. ```text .venv/lib/python3.12/site-packages/freezegun/api.py:686: in __enter__ return self.start()...

We're also hitting this. Any update on timeline for the fix?