We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4808e6 commit 0268a50Copy full SHA for 0268a50
1 file changed
tests/python/lib/http_client.py
@@ -28,6 +28,7 @@ def send_http_request(port, uri='/', method='GET', timeout=30, **kwargs):
28
print("\nSending HTTP request: [{}]".format(blue(url)))
29
r = session.request(method=method, url=url, timeout=timeout, **kwargs)
30
session.close()
31
+ print(r)
32
print("HTTP request debug:")
33
print("=============================")
34
print(*[i for i in dump.dump_all(r).splitlines(True)], sep="\n")
0 commit comments