Were can we increase the max number of matching routes defined in base_routing

I’m getting the flowing warning
“Reached maximum number of matching routes (8) defined in base_routing”

Were can we increase the max number of matching routes defined in base_routing?

I think it is the constant max_nb_match, but I’m not finding where it is defined?

In Gateway → Routing Script → Locate the script called base_routing.rb.

You can adjust below value from 8 to another value:

Step 2: Routes matching filters

  script_params[:routes] = match_routes( script_params[:routes], script_params[:call], script_params[:naps], 8 )

Recommend to create a copy of the existing configuration and then change this value so that you can always go back to the original default configuration.