ltm rule command MR retryΒΆ

iRule(1)		      BIG-IP TMSH Manual		      iRule(1)



MR::retry
       Send the current message to the router for routing.

SYNOPSIS
       MR::retry

DESCRIPTION
       The MR::retry command instructs the Message Routing Framework submit
       the current message to the router to retry routing. This will clear the
       message's route status. The script may need to clear the message's
       existing nexthop and route fields if a new routetable lookup is
       desired. If a persistence record exists for this message, it may also
       need to be reset.

RETURN VALUE
VALID DURING
       MR_FAILED

EXAMPLES
	when MR_FAILED {
	    if {[MR::retry_count] < 2} {
		MR::message nexthop none
		MR::message route config tc1 host "10.1.1.1:1234"
		MR::retry
	    }
	}

HINTS
SEE ALSO
CHANGE LOG
       @BIGIP-13.0.0
		   --First introduced the command.



BIG-IP				  2017-01-31			      iRule(1)