Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
stvoutsin committed Oct 7, 2024
1 parent 8ec8c09 commit 0d3fbbe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,5 @@ The application expects as configuration the definition of what query_engine to

The system architecture & design considerations have been documented in https://github.com/lsst-sqre/sqr-095.


See CHANGELOG.md for the change history of sia.
See [CHANGELOG.md](https://github.com/lsst-sqre/sia/blob/main/CHANGELOG.md) for the change history of sia.

1 change: 1 addition & 0 deletions src/sia/handlers/external.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ def query_get(
SIA Specification: http://www.ivoa.net/documents/SIA/
ObsCore Data Model: http://www.ivoa.net/documents/ObsCore/
"""
delegated_token = "gt-ITPkjyvw6huJksRQNbN1gw.e4uuXoy1CPpmAwDLrmdRrA"
context.logger.info(
"SIA query started with params:", params=params, method="GET"
)
Expand Down
4 changes: 2 additions & 2 deletions src/sia/models/data_collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class ButlerDataCollection:
repository: str
label: str
default: bool = False
datalink_url_format: str | None = ""
datalinkurl: str | None = ""

def get_identifier(self) -> str:
"""Get the identifier for the data collection.
Expand Down Expand Up @@ -46,5 +46,5 @@ def exporter_config(self) -> ExporterConfig:
# so we suppress the AttributeError
exporter_config.dataset_types[
name
].datalink_url_fmt = self.datalink_url_format
].datalink_url_fmt = self.datalinkurl
return exporter_config

0 comments on commit 0d3fbbe

Please sign in to comment.