Skip to content

Commit

Permalink
Printing request url
Browse files Browse the repository at this point in the history
  • Loading branch information
nataliejschultz committed Jun 14, 2024
1 parent e69d80c commit b1f7d4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emission/net/ext_service/transit_matching/match_stops.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
def make_request_and_catch(overpass_query):
try:
response = requests.post(url + "api/interpreter", data=overpass_query)
print("*********RESPONSE:" , response.text)
print("*********RESPONSE:" , response.request.url)
except requests.exceptions.ChunkedEncodingError as e:
logging.info("ChunkedEncodingError while creating request %s" % (e))
time.sleep(10)
Expand Down

0 comments on commit b1f7d4f

Please sign in to comment.