Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ydb/aio/iam.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ async def _make_token_request(self):
% await response.text()
)
response.raise_for_status()
return await response.json()
# response from default metadata credentials provider
# contains text/plain content type.
return await response.json(content_type=None)


class ServiceAccountCredentials(JWTIamCredentials):
Expand Down