Use StringIO for response
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
2095c620eb
commit
bf49fd81c8
@ -1,3 +1,4 @@
|
||||
from io import StringIO
|
||||
from urllib import parse
|
||||
from requests import RequestException, Response, Session, post
|
||||
from .config import CLOUDPROXY_ENDPOINT
|
||||
@ -41,7 +42,7 @@ class FlareRequests(Session):
|
||||
if "solution" in solution:
|
||||
resolved = Response()
|
||||
|
||||
resolved.raw = solution["solution"]["response"]
|
||||
resolved.raw = StringIO(solution["solution"]["response"])
|
||||
resolved.status_code = solution["solution"]["status"]
|
||||
resolved.headers = solution["solution"]["headers"]
|
||||
resolved.url = url
|
||||
|
Reference in New Issue
Block a user