Better handling of server runtime errors
This commit is contained in:
parent
5557754b9c
commit
052d0ed296
2 changed files with 9 additions and 2 deletions
|
@ -6,6 +6,7 @@
|
|||
* Using the new `nwr` query type of Overpass API.
|
||||
* Reduced default `max_request_boxes` to four.
|
||||
* New argument `--alt-overpass` to use Kumi Systems' server (since the main one is blocked in Russia).
|
||||
* Better handling of server runtime errors.
|
||||
|
||||
## 1.3.3
|
||||
|
||||
|
|
|
@ -573,8 +573,14 @@ class OsmConflator:
|
|||
else:
|
||||
logging.error('Error message: %s', r.text)
|
||||
raise IOError()
|
||||
if 'runtime error: Query timed out' in r.text:
|
||||
logging.error('Query timed out, try increasing the "overpass_timeout" profile variable')
|
||||
if 'runtime error: ' in r.text:
|
||||
m = re.search(r'runtime error: ([^<]+)', r.text)
|
||||
error = 'unknown' if not m else m.group(1)
|
||||
if 'Query timed out' in error:
|
||||
logging.error(
|
||||
'Query timed out, try increasing the "overpass_timeout" profile variable')
|
||||
else:
|
||||
logging.error('Runtime error: %s', error)
|
||||
raise IOError()
|
||||
self.parse_osm(r.content)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue