-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support download uploaded documents #532
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@Rutheniumlmw is attempting to deploy a commit to the pingcap Team on Vercel. A member of the Team first needs to authorize it. |
backend/app/api/routes/document.py
Outdated
headers = {"Content-Length": str(file_size)} | ||
def iterfile(): | ||
with filestorage.open(name) as f: | ||
while chunk := f.read(8192): # 每次读取 8KB |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please refer to FastAPI Document. It's not necessary to manually call f.read()
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice work
part of #466