<div dir="ltr"><div>Hello all,</div><div><br></div><div>I'm trying to accomplish the following scenario, and some questions have been raised during testing: I'd like to be able to fork serially to a number of downstream destinations in case of failure, but also try several hosts which are available per destination network before failing over to the next one. To that end, I'm using something similar to the following:</div><div><br></div><div><span style="font-family:monospace">request_route {</span></div><div style="margin-left:40px"><span style="font-family:monospace">...</span></div><div style="margin-left:40px">$vn(some_var) = "some_value";</div><div style="margin-left:40px">$vn(some_other_var) = "some_other_value";</div><div style="margin-left:40px">...</div><div style="margin-left:40px">$avp(provider_order) = "last_provider";</div><div style="margin-left:40px">$avp(provider_order) = "first_provider";</div><div style="margin-left:40px">...</div><div style="margin-left:40px">t_set_fr(120000, 2000);</div><div style="margin-left:40px">route(PROVIDER_SELECTION);</div><div style="margin-left:40px">...</div><div>}</div><div><br></div><div>route[PROVIDER_SELECTION] {</div><div style="margin-left:40px"></div><div style="margin-left:40px">if ( is_avp_set("$avp(provider_order)") ) {</div><div style="margin-left:80px">t_on_failure("PROVIDER_SERIAL");</div><div style="margin-left:80px">if ( $avp(provider_priority) == "first_provider" )</div></div>