Skip to content
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

when ingest document with collection_ids error occurs #2028

Open
zhengwj533 opened this issue Mar 6, 2025 · 0 comments
Open

when ingest document with collection_ids error occurs #2028

zhengwj533 opened this issue Mar 6, 2025 · 0 comments

Comments

@zhengwj533
Copy link
Contributor

Describe the bug
when ingest document with collection_ids error occurs.

To Reproduce

ingest request like this, with collection_ids.

POST /v3/documents HTTP/1.1
Content-Length: 4372
Content-Type: multipart/form-data
Host: localhost:7272
User-Agent: HTTPie

--PieBoundary123456789012345678901234567
Content-Disposition: form-data; name="metadata"

{"catalog":"help"}
--PieBoundary123456789012345678901234567
Content-Disposition: form-data; name="file"; filename="10-dev-env.md"
Content-Type: 


--PieBoundary123456789012345678901234567
Content-Disposition: form-data; name="collection_ids"

["2cf8ceb6-1106-4c12-b233-7ef15cf74530","7a027464-a07c-4a04-9cbe-5976756791a8"]
--PieBoundary123456789012345678901234567
Content-Disposition: form-data; name="file-name"

10-dev-env.md
--PieBoundary123456789012345678901234567--

In the server side an error log like this:

ERROR - ingestion_workflow.py 178 : Error during assigning document to collection: invalid input for query argument $2: '2cf8ceb6-1106-4c12-b233-7ef15cf74530' (a sized iterable container expected (got type 'str'))

Additional context
Add any other context about the problem here.

in the source file documents_router.py:

documents_router.py:
            workflow_input = {
                "file_data": file_data,
                "document_id": str(document_id),
                "collection_ids": (
                    [str(cid) for cid in collection_ids]
                    if collection_ids
                    else None
                ),

and in the file documents.py:

        ids = [id] if isinstance(id, UUID) else id

maybe should be

        ids = id if isinstance(id, list) else [id]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant