Skip to content

Commit

Permalink
Add debug logging of _build_oidc_provider_map pid_map
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Apr 18, 2024
1 parent 04650b5 commit bf34311
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
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.32.0a1"
__version__ = "0.32.1a1"


def log_version_info(logger: Optional[logging.Logger] = None):
Expand Down
1 change: 1 addition & 0 deletions src/openeo_aggregator/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ def _build_oidc_provider_map(self, configured_providers: List[OidcProvider]) ->
targets = [bp.id for bp in backend_providers if bp.get_issuer() == agg_provider.get_issuer()]
if targets:
pid_map[agg_provider.id] = targets[0]
_log.debug(f"_build_oidc_provider_map {pid_map=}")
return pid_map

def get_oidc_provider_map(self) -> Dict[str, str]:
Expand Down

0 comments on commit bf34311

Please sign in to comment.