ignore 'invoke' on different module

rather than exploding.
This commit is contained in:
Matthias Radestock 2013-01-28 16:17:44 +00:00
parent b0e579e850
commit 7d0c8669ef
1 changed files with 2 additions and 1 deletions

View File

@ -809,7 +809,8 @@ status(#vqstate {
{avg_ack_ingress_rate, AvgAckIngressRate},
{avg_ack_egress_rate , AvgAckEgressRate} ].
invoke(?MODULE, Fun, State) -> Fun(?MODULE, State).
invoke(?MODULE, Fun, State) -> Fun(?MODULE, State);
invoke( _, _, State) -> State.
is_duplicate(_Msg, State) -> {false, State}.