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

Fixing SODA_SYNC_IVOID so we work with all version 1 SODA services. #538

Merged
merged 1 commit into from
Apr 17, 2024
Merged
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
3 changes: 1 addition & 2 deletions pyvo/dal/adhoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# reasons. This is the size of a batch
DATALINK_BATCH_CALL_SIZE = 50

SODA_SYNC_IVOID = 'ivo://ivoa.net/std/SODA#sync-1.0'
SODA_SYNC_IVOID = 'ivo://ivoa.net/std/SODA#sync-1'
DATALINK_IVOID = 'ivo://ivoa.net/std/datalink'

# MIME types
Expand Down Expand Up @@ -109,7 +109,6 @@ class AdhocServiceResultsMixin:

def __init__(self, votable, *, url=None, session=None):
super().__init__(votable, url=url, session=session)

self._adhocservices = list(
resource for resource in votable.resources
if resource.type == "meta" and resource.utype == "adhoc:service"
Expand Down
Loading