Skip to content

Commit

Permalink
Issue #133 Disable auth_entitlement_check (check on EGI VO entitlem…
Browse files Browse the repository at this point in the history
…ents) in all configs
  • Loading branch information
soxofaan committed Jan 17, 2024
1 parent 9d91d46 commit 7f3ac8e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

The format is roughly based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [0.16.x]

- Disable `auth_entitlement_check` (check on EGI VO entitlements) in all configs ([#133](https://github.com/Open-EO/openeo-aggregator/issues/133))

## [0.15.x]

- Basic support for `POST /validation`: pass through validation of best upstream backend for given process graph ([#42](https://github.com/Open-EO/openeo-aggregator/issues/42))
Expand Down
4 changes: 1 addition & 3 deletions conf/aggregator.dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@
# Sentinel Hub OpenEO by Sinergise
"sentinelhub": "https://openeo.sentinel-hub.com/production/",
},
auth_entitlement_check={"oidc_issuer_whitelist": {
"https://aai.egi.eu/auth/realms/egi/",
}},
auth_entitlement_check=False,
configured_oidc_providers=configured_oidc_providers,
partitioned_job_tracking={
"zk_hosts": ZK_HOSTS,
Expand Down
4 changes: 1 addition & 3 deletions conf/aggregator.prod.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,7 @@
# Sentinel Hub OpenEO by Sinergise
"sentinelhub": "https://openeo.sentinel-hub.com/production/",
},
auth_entitlement_check={"oidc_issuer_whitelist": {
"https://aai.egi.eu/auth/realms/egi/",
}},
auth_entitlement_check=False,
configured_oidc_providers=configured_oidc_providers,
partitioned_job_tracking={
"zk_hosts": ZK_HOSTS,
Expand Down
2 changes: 1 addition & 1 deletion src/openeo_aggregator/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
from typing import Optional

__version__ = "0.15.0a1"
__version__ = "0.16.0a1"


def log_version_info(logger: Optional[logging.Logger] = None):
Expand Down

0 comments on commit 7f3ac8e

Please sign in to comment.