Extra info requested but not available

Hi,
thanks to your help we successfully build a docker, called the service with this call:

body = {"coordinates":[[-95.49556,29.920981],[-117.07077,33.106862]],"attributes":["avgspeed","detourfactor","percentage"],"elevation":"true","extra_info":["steepness","suitability","surface","waycategory","waytype","tollways","traildifficulty","osmid","roadaccessrestrictions","countryinfo"],"instructions":"false","options":{"avoid_borders":"none"},"preference":"fastest","geometry": 'False'}

headers = {
    'Accept': 'application/json, application/geo+json, application/gpx+xml, img/png; charset=utf-8',
    'Content-Type': 'application/json; charset=utf-8'
    }

And got back a warning message:
‘warnings’: [{‘code’: 4,
‘message’: ‘Extra info requested but not available: tollways, osmid, countryinfo’}]

We would love to get back info about tollways, so we tried to upload the tollways file:

java.util.concurrent.ExecutionException: java.lang.IllegalStateException: Unable to load storage 'ext_tolls'. corrupt file or directory?
at java.util.concurrent.FutureTask.report(FutureTask.java:122) ~[?:?]
at java.util.concurrent.FutureTask.get(FutureTask.java:191) ~[?:?]
at org.heigit.ors.routing.RoutingProfileManager.initialize(RoutingProfileManager.java:164) ~[classes/:6.3.6]
at org.heigit.ors.routing.RoutingProfileManager.getInstance(RoutingProfileManager.java:59) ~[classes/:6.3.6]
at org.heigit.ors.servlet.listeners.ORSInitContextListener.lambda$contextInitialized$0(ORSInitContextListener.java:40) ~[classes/:6.3.6]

This is the error we got:

java.io.IOException: Cannot flush a closed output stream
	at org.heigit.ors.servlet.filters.GZIPResponseStream.flush(GZIPResponseStream.java:66) ~[classes/:6.3.6]

Any idea how can we fix it?

thanks!