feat(all): 同步最新进度

This commit is contained in:
xingc
2025-04-03 17:21:29 +08:00
parent d6098c8b87
commit 70e0e5b034
24 changed files with 806 additions and 184 deletions

View File

@@ -70,9 +70,9 @@ async def upload_file(
return {'data': file_info}
except Exception as e:
logger.error(f'Upload failed: {str(e)}')
logger.error(f'Upload failed: {e}')
logger.exception(e)
raise HTTPException(
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
detail=f'File upload failed'
detail='Internal server error'
)