fix(upload): store relative paths in uploaded_files.storage_path#234
Closed
tanbro wants to merge 0 commit into
Closed
fix(upload): store relative paths in uploaded_files.storage_path#234tanbro wants to merge 0 commit into
tanbro wants to merge 0 commit into
Conversation
a1bdb2f to
d904e8f
Compare
Contributor
Author
|
The PR is abandoned, see #235 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Abandoned
Previously, The
uploaded_filestable'sstorage_pathfield stored absolute file paths in the database, which causes issues when:XAGENT_UPLOADS_DIRenvironment variable is changedChanges:
to_relative_path(): convert absolute to relative (without user_id prefix)to_absolute_path(): convert relative to absolutefind_file_by_path(): query files with absolute/relative path compatibilityUploadedFile.absolute_pathproperty that handles both absolute and relative paths for backward compatibilityweb/api/files.py: file upload APIweb/api/websocket.py: task output files (all locations)web/api/kb.py: knowledge base file uploadcore/workspace.py: agent workspace file registrationscripts/backfill_uploaded_files.py: backfill scriptVerified: New files created via agent now store relative paths like "web_task_37/output/fibonacci_polar_final.png" instead of absolute paths. Old records with absolute paths continue to work via backward compatibility logic.