Fix the error for using additional user_id

This commit is contained in:
jetli 2024-10-23 04:24:12 +00:00
parent 2013d45e86
commit 0a0c0d128d
2 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View File

@ -3,4 +3,5 @@
.vscode
/deploy/.*
*.log
*.pyc
*.pyc
freedev.code-workspace

View File

@ -5,7 +5,7 @@ from app.central_storage.backend.business.document_manager import (
class DocumentHub:
def __init__(self, ):
self.document_manager = DocumentManager(self.user_id)
self.document_manager = DocumentManager()
return
async def retrieve_document_info(self, document_id: str):