Skip to content

Commit

Permalink
Merge branch 'fix/file-estimate-issue' into deploy/dev
Browse files Browse the repository at this point in the history
# Conflicts:
#	api/requirements.txt
  • Loading branch information
JohnJyong committed Jan 2, 2024
2 parents 465a09e + 4592df9 commit 4212eee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/controllers/console/datasets/datasets_document.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ def get(self, dataset_id, batch):
if dataset.data_source_type == 'upload_file':
file_details = db.session.query(UploadFile).filter(
UploadFile.tenant_id == current_user.current_tenant_id,
UploadFile.id in info_list
UploadFile.id.in_(info_list)
).all()

if file_details is None:
Expand Down

0 comments on commit 4212eee

Please sign in to comment.