Skip to content

Commit e9f23a0

Browse files
authored
fix: exception oauth string error (#423)
Signed-off-by: Artem Inzhyyants <[email protected]>
1 parent 7a8cb92 commit e9f23a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte_cdk/sources/streams/http/requests_native_auth/abstract_oauth.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ def _ensure_access_token_in_response(self, response_data: Mapping[str, Any]) ->
247247
access_key = self._extract_access_token(response_data)
248248
if not access_key:
249249
raise Exception(
250-
"Token refresh API response was missing access token {self.get_access_token_name()}"
250+
f"Token refresh API response was missing access token {self.get_access_token_name()}"
251251
)
252252
# Add the access token to the list of secrets so it is replaced before logging the response
253253
# An argument could be made to remove the prevous access key from the list of secrets, but unmasking values seems like a security incident waiting to happen...

0 commit comments

Comments
 (0)