Skip to content
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

Issues/55 Cache harmony client and don't validate EDL on init #56

Merged
merged 11 commits into from
Feb 12, 2025
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Added
### Changed
- [issues/55](https://github.com/podaac/bignbit/issues/55): Harmony client changed from per request and instead will be cached as global variable and will not validate auth credentials on initialization.
### Deprecated
### Removed
### Fixed
Expand Down
19 changes: 14 additions & 5 deletions bignbit/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

ED_USER = ED_PASS = None
EDL_USER_TOKEN = {}
HARMONY_CLIENT: Client or None = None


def get_edl_creds() -> (str, str):
Expand Down Expand Up @@ -267,12 +268,20 @@ def get_harmony_client(environment_str: str) -> harmony.Client:
elif environment_str.upper() in ("OPS", "PROD"):
harmony_environ = Environment.PROD

harmony_client = Client(
env=harmony_environ,
auth=get_edl_creds()
)
global HARMONY_CLIENT # pylint: disable=W0603

# If we already have a client, but it's for a different environment, replace it with one configured for new environment.
if HARMONY_CLIENT and HARMONY_CLIENT.config.environment != harmony_environ:
HARMONY_CLIENT = None

if not HARMONY_CLIENT:
HARMONY_CLIENT = Client(
env=harmony_environ,
auth=get_edl_creds(),
should_validate_auth=False
)

return harmony_client
return HARMONY_CLIENT


def extract_mgrs_grid_code(granule_umm_json: dict) -> str:
Expand Down
Loading