diff --git a/CHANGELOG.md b/CHANGELOG.md index e4995cc..bbc6ed3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## [unreleased] ### Fixed - Fixed an issue where token-refresh was expecting a dictionary, not a list of tuples +- Fixed issues where token was not propagated to downloader CMR query [94](https://github.com/podaac/data-subscriber/issues/94) - Fixed an issue with 503 errors on data download not being re-tried. [97](https://github.com/podaac/data-subscriber/issues/97) ### Added - Added citation file creation when data are downloaded [91](https://github.com/podaac/data-subscriber/issues/91). Required some updates to the regression testing. diff --git a/subscriber/podaac_data_downloader.py b/subscriber/podaac_data_downloader.py index 38c97d8..3ee5347 100644 --- a/subscriber/podaac_data_downloader.py +++ b/subscriber/podaac_data_downloader.py @@ -178,6 +178,7 @@ def run(args=None): ('provider', provider), ('ShortName', short_name), ('temporal', temporal_range), + ('token', token), ] if args.verbose: logging.info("Temporal Range: " + temporal_range)