-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Calculate hash for new non-deferred datasets when finishing a job #19181
Merged
jmchilton
merged 5 commits into
galaxyproject:dev
from
nsoranzo:dataset_hashes_at_job_finish
Nov 21, 2024
Merged
Calculate hash for new non-deferred datasets when finishing a job #19181
jmchilton
merged 5 commits into
galaxyproject:dev
from
nsoranzo:dataset_hashes_at_job_finish
Nov 21, 2024
Conversation
This file contains 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
And fix a typo.
And fix a typo.
This is configurable with two new options: - `calculate_dataset_hash`: in which cases Galaxy should calculate a hash for a new dataset. Possible values: 'always', 'upload' (the default), 'never'. - `hash_function`. Possible values: 'md5', 'sha1', 'sha256', 'sha512' Hashes are calculated via a Celery task, so currently only if the 'enable_celery_tasks' option is set to true.
github-actions
bot
added
area/documentation
area/testing
area/jobs
area/admin
area/database
Galaxy's database or data access layer
area/datatypes
area/tool-framework
area/util
area/testing/api
area/testing/integration
labels
Nov 21, 2024
jmchilton
approved these changes
Nov 21, 2024
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.
Oh the anxiety this causes but I think this is a good step forward.
In case of issues, changing |
Integration test failure unrelated. |
4 tasks
mvdbeek
reviewed
Nov 22, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/admin
area/database
Galaxy's database or data access layer
area/datatypes
area/documentation
area/jobs
area/testing/api
area/testing/integration
area/testing
area/tool-framework
area/util
BioHackEU24
kind/enhancement
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.
This is configurable with two new options:
calculate_dataset_hash
: in which cases Galaxy should calculate a hash for a new dataset. Possible values: 'always', 'upload' (the default), 'never'.hash_function
. Possible values: 'md5', 'sha1', 'sha256', 'sha512'Hashes are calculated via a Celery task, so currently only if the 'enable_celery_tasks' option is set to true.
Also:
How to test the changes?
(Select all options that apply)
License