Skip to content

Commit

Permalink
AggregatorConfig: auth_entitlement_check false by default
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Sep 27, 2023
1 parent d4d9a67 commit fbf7e65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openeo_aggregator/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class AggregatorConfig(dict):

# TODO: add validation/normalization to make sure we have a real list of OidcProvider objects?
configured_oidc_providers: List[OidcProvider] = dict_item(default=[])
auth_entitlement_check: Union[bool, dict] = dict_item()
auth_entitlement_check: Union[bool, dict] = dict_item(default=False)

partitioned_job_tracking = dict_item(default=None)
zookeeper_prefix = dict_item(default="/openeo-aggregator/")
Expand Down

0 comments on commit fbf7e65

Please sign in to comment.