Skip to content

Commit

Permalink
Issue #531 minor logging tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Dec 15, 2023
1 parent 784c32d commit e34c71b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openeogeotrellis/integrations/etl_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ def __init__(
source_id: Optional[str] = None,
requests_session: Optional[requests.Session] = None,
):
_log.debug(f"EtlApi.__init__() with {endpoint=} {source_id=}")
self._endpoint = endpoint
self._source_id = source_id or get_backend_config().etl_source_id
_log.debug(f"EtlApi.__init__() with {self._endpoint=} {self._source_id=}")
self._session = requests_session or requests.Session()
self._access_token_helper = ClientCredentialsAccessTokenHelper(session=self._session, credentials=credentials)

Expand Down

0 comments on commit e34c71b

Please sign in to comment.