-
Notifications
You must be signed in to change notification settings - Fork 19
Tus implementation to resume transfer #540
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
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
5598668
fix: tuspyserver clean up
selvaebi 9a527da
fix: actions
selvaebi e31ab48
fix: location header
selvaebi 0c16272
fix: location header
selvaebi cf010f8
fix: location header just for files
selvaebi 96488d8
fix: location header just for files
selvaebi 590f122
fix: location header absolute path
selvaebi 3190f25
fix: job id
selvaebi c7ceceb
fix: app chunk size
selvaebi 046e1a4
fix: app chunk size
selvaebi 16f76d2
fix: resume
selvaebi e8a7ac4
fix: chunksize
selvaebi f2769f7
fix: resume button
selvaebi 55554ce
fix: resume button
selvaebi 2abd6f9
fix: retry logs
selvaebi e6ad855
fix: retry logs
selvaebi 38861c9
fix: removeLocalStorageAfter completion
selvaebi 2337bc0
feat: add FragPipe support to pmultiqc_service
claude 1f00ede
Merge pull request #538 from bigbio/claude/refactor-pmultiqc-service-…
ypriverol a44a62e
Merge pull request #539 from bigbio/tus
ypriverol 86da4b9
Update build-and-push.yml
selvaebi 9695c44
fix: fastapi and removeRedisDuplicate
selvaebi 2a446e3
fix: dev build to test
selvaebi a5ab34a
fix: review changes
selvaebi 6dfe8ca
fix: review changes
selvaebi f703118
fix: code factor build
selvaebi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unreachable else branch and unused step ID.
Two observations:
The workflow only triggers on
mainandmasterbranches (line 5), so theelsebranch (lines 42-44) will never execute. If this is intentional, consider removing the dead code; otherwise, expand the trigger to include other branches.The
id: tagis set but never referenced. Since outputs go toGITHUB_ENV, the id can be removed.🔧 Suggested simplification (if only main/master is intended)
Alternatively, if you intend to support feature branches in the future, consider sanitizing branch names (replacing
/with-) since Docker tags cannot contain/.📝 Committable suggestion
🤖 Prompt for AI Agents