Avoid_countries

in my ORS instance i have europe-latest.osm.pbf my verison API is 7.1.0, my curl request:

curl -X POST
http://127.0.0.1:8082/ors/v2/directions/driving-hgv/gpx
-H ‘Content-Type: application/json; charset=utf-8’
-H ‘Accept: application/json, application/geo+json, application/gpx+xml, img/png; charset=utf-8’
-d ‘{
“radiuses”:[1000,1000],
“coordinates”: [
[18.01434, 53.122091],
[-3.69063, 40.42526]
],
“options”:{
“avoid_borders”: “controlled”,“avoid_countries”: [74]
}
}’

this is route from poland (bydgoszcz) to mediolan spain avoid DE.
avoid_countries not working(route works, through Germany unfortunately), my graphs is ok (no error at generate).
in my logs no errors… how to debug this problem? or fix?
the rest of the parameters like avoid_features etc. work ok (tested GPX at http://gpx.studio)