parse json with pydantic
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Roy Olav Purser 2022-02-13 11:37:09 +01:00
parent 2ce25ac5ac
commit b667177531
Signed by: roypur
GPG Key ID: E14D26A036F21656

View File

@ -114,7 +114,7 @@ class ProxyElem:
async with self.local() as session:
resp = await session.post(proxy_server, json=request_data.dict())
response_data = cast(
ProxyResponse, ProxyResponse.parse_obj(await resp.json())
ProxyResponse, ProxyResponse.parse_raw(await resp.text())
)
except (aiohttp.ClientError, pydantic.ValidationError) as e:
logger.info(e)