We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 020d22a + 81eb8ec commit 21725e6Copy full SHA for 21725e6
ydb/aio/iam.py
@@ -130,7 +130,9 @@ async def _make_token_request(self):
130
% await response.text()
131
)
132
response.raise_for_status()
133
- return await response.json()
+ # response from default metadata credentials provider
134
+ # contains text/plain content type.
135
+ return await response.json(content_type=None)
136
137
138
class ServiceAccountCredentials(JWTIamCredentials):
0 commit comments