1
0
Fork 0

Merge pull request #893 from rqlite/reraise-http-exceptions

Reraise HTTP exceptions
master
Philip O'Toole 3 years ago committed by GitHub
commit 954c8e8ade
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -315,6 +315,7 @@ def raise_for_status(r):
except requests.exceptions.HTTPError as e:
print(e)
print(r.text)
raise e
def random_addr():
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

Loading…
Cancel
Save