Skip to content

Commit

Permalink
Merge pull request #538 from msdemlei/accept-all-soda-1
Browse files Browse the repository at this point in the history
Fixing SODA_SYNC_IVOID so we work with all version 1 SODA services.
  • Loading branch information
bsipocz committed May 22, 2024
1 parent bc43e0b commit 99ef7f3
Showing 1 changed file with 1 addition and 2 deletions.
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

0 comments on commit 99ef7f3

Please sign in to comment.