Self-Host not using changed isochrone settings

Hello,

I’m having some issues generating isochrones using the settings I added in my ors-config.yml file. I am trying to do >1hr isochrones, so I updated my config to read:

ors:
  services:
    isochrones:
      maximum_range_distance:
      - profiles: any
        value: 10000
      - profiles: driving-car, driving-hgv
        value: 10000
  ### uncomment the following lines to change CORS settings.
  #cors:
  #  allowed_origins: "*"
  #  allowed_headers: Content-Type, X-Requested-With, accept, Origin, Access-Control-Request-Method, Access-Control-Request-Headers, Authorization
  #  preflight_max_age: 600
  engine:
    ### use the following line for development setup using test OSM file for Heidelberg
    #source_file: ./src/test/files/heidelberg.osm.gz
    source_file: ./ors-core/data/zambia-osm.pbf
    graphs_root_path: ./ors-core/data/graphs
    elevation:
      cache_path: ./ors-core/data/elevation_cache

    profiles:
      car:
        profile: driving-car
        elevation: true
        encoder_options:
          turn_costs: true
          block_fords: false
          use_acceleration: true
        preparation:
          min_network_size: 200
          min_one_way_network_size: 200
          methods:
            ch:
              enabled: true
              threads: 1
              weightings: fastest
            lm:
              enabled: false
              threads: 1
              weightings: fastest,shortest
              landmarks: 16
            core:
              enabled: true
              threads: 1
              weightings: fastest,shortest
              landmarks: 64
              lmsets: highways;allow_all
        execution:
          methods:
            ch:
              disabling_allowed: true
            lm:
              disabling_allowed: true
              active_landmarks: 6
            core:
              disabling_allowed: true
              active_landmarks: 6
        ext_storages:
          WayCategory:
          HeavyVehicle:
          WaySurfaceType:
          RoadAccessRestrictions:
            use_for_warnings: true

I tried running 1.5 hr isochrones as a test, and it wasn’t working. I know that the self-host itself is working (as it uses the osm file I added and works for 1hr isochrones), but it’s not considering the changed permissions for isochrone max times (just gives the generic “this range is out of the max = 3600” message). I was wondering if anyone could help. Thank you!

Hi @cheetah

see Increase the number of routes in the matrix - #2 by takb

Thank you! Unfortunately, after trying this, I now an error when I try to compose up to Docker saying “ORS-Init [ o.h.o.r.RoutingProfileManager ] No profiles configured. Exiting.” Do you know the reason for this?