Skip to content

Commit

Permalink
Merge pull request #634 from chmmao/vosimin
Browse files Browse the repository at this point in the history
[Issue 504] add "detail=min" parameter
  • Loading branch information
bsipocz authored Jan 14, 2025
2 parents d30e5e5 + b5b8d78 commit 6796209
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Bug Fixes

- Fix string literal generation for SQL query when using numpy >=2.0. [#624]

- Switch to do minimal VOSI tables downloads for TAP metadata. [#634]


1.6 (2024-11-01)
================
Expand Down
2 changes: 1 addition & 1 deletion pyvo/dal/tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def tables(self):
if self._tables is None:
tables_url = '{}/tables'.format(self.baseurl)

response = self._session.get(tables_url, stream=True)
response = self._session.get(tables_url, params={"detail": "min"}, stream=True)

try:
response.raise_for_status()
Expand Down

0 comments on commit 6796209

Please sign in to comment.