-
Notifications
You must be signed in to change notification settings - Fork 1
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
Release v0.5.9 -- performance improvements #202
Conversation
add units to log message
Query HyP3 jobs table directly
…/its-live-monitoring into jth-query-jobs-by-status
…/its-live-monitoring into jth-query-jobs-by-status
…e-monitoring into jth-query-jobs-by-status
finish implementing `query_jobs_by_status_code`
fix testing API, permissions, and bucket
Alright! I've confirmed via too many integration tests that:
So we should be good to release! |
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 3 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v3...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) from 1 to 4. - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](aws-actions/configure-aws-credentials@v1...v4) --- updated-dependencies: - dependency-name: aws-actions/configure-aws-credentials dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps [cfn-lint](https://github.com/aws-cloudformation/cfn-lint) from 1.19.0 to 1.20.0. - [Release notes](https://github.com/aws-cloudformation/cfn-lint/releases) - [Changelog](https://github.com/aws-cloudformation/cfn-lint/blob/main/CHANGELOG.md) - [Commits](aws-cloudformation/cfn-lint@v1.19.0...v1.20.0) --- updated-dependencies: - dependency-name: cfn-lint dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
Bump cfn-lint from 1.19.0 to 1.20.0
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.7.4 to 0.8.0. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.7.4...0.8.0) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
…s/setup-python-5 Bump actions/setup-python from 3 to 5
…tions/configure-aws-credentials-4 Bump aws-actions/configure-aws-credentials from 1 to 4
Bump ruff from 0.7.4 to 0.8.0
@@ -85,7 +83,7 @@ def get_key(tile_prefixes: Iterable[str], reference: str, secondary: str) -> str | |||
for tile_prefix in tile_prefixes: | |||
prefix = f'{tile_prefix}/{reference}_X_{secondary}' | |||
response = s3.list_objects_v2( | |||
Bucket='its-live-data', | |||
Bucket=os.environ.get('PUBLISH_BUCKET', 'its-live-data'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need a default value here, or could we just require that PUBLISH_BUCKET
be defined?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I couldn't decide; we provide a default value in other places (e.g., here) so I matched that.
It might be better overall to not provide defaults (or default to test values instead of production...) and maybe add a .env file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I'd err on the side of not providing defaults, but won't hold up the PR for it since we already set the current precedent elsewhere in the code.
indent yaml list items, fix README typo
No description provided.