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

TPV Pydantic update #1316

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions files/galaxy/tpv/tool_defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,9 @@ tools:

user_preferences = user.extra_preferences
pulsar_tag = user_preferences.get("distributed_compute|remote_resources", "None")
pulsar_tag = Tag("scheduling", pulsar_tag, TagType.REQUIRE) if pulsar_tag != "None" else None

if pulsar_tag:
if pulsar_tag != "None":
entity.tpv_tags = entity.tpv_tags.combine(
TagSetManager(tags=[pulsar_tag])
SchedulingTags(require=[pulsar_tag])
)
- id: removed_remote_resources
# This rule displays a meaningful error message when users who have selected remote resources that are no longer available (e.g. because they have been removed) attempt to send jobs to them.
Expand Down
Loading